Module Name: src
Committed By: lneto
Date: Sun Nov 30 19:12:59 UTC 2014
Modified Files:
src/sys/sys: lua.h
Log Message:
lua(4): included <sys/param.h> into sys/lua.h
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/sys/lua.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/lua.h
diff -u src/sys/sys/lua.h:1.6 src/sys/sys/lua.h:1.7
--- src/sys/sys/lua.h:1.6 Sat Jul 19 17:20:02 2014
+++ src/sys/sys/lua.h Sun Nov 30 19:12:59 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: lua.h,v 1.6 2014/07/19 17:20:02 lneto Exp $ */
+/* $NetBSD: lua.h,v 1.7 2014/11/30 19:12:59 lneto Exp $ */
/*
* Copyright (c) 2014 by Lourival Vieira Neto <[email protected]>.
@@ -32,6 +32,8 @@
#ifndef _SYS_LUA_H_
#define _SYS_LUA_H_
+#include <sys/param.h>
+
#include <lua.h> /* for lua_State */
#ifdef _KERNEL