Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-7]: src/external/mit/lua/dist/src Pull up following revision(s) (...
details: https://anonhg.NetBSD.org/src/rev/efcf02c3ebb2
branches: netbsd-7
changeset: 798647:efcf02c3ebb2
user: martin <martin%NetBSD.org@localhost>
date: Mon Dec 01 13:11:18 2014 +0000
description:
Pull up following revision(s) (requested by lneto in ticket #282):
external/mit/lua/dist/src/luaconf.h: revision 1.10
lua(4): fixed Lua stack size
diffstat:
external/mit/lua/dist/src/luaconf.h | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diffs (42 lines):
diff -r d77ca5d64a30 -r efcf02c3ebb2 external/mit/lua/dist/src/luaconf.h
--- a/external/mit/lua/dist/src/luaconf.h Mon Dec 01 13:08:14 2014 +0000
+++ b/external/mit/lua/dist/src/luaconf.h Mon Dec 01 13:11:18 2014 +0000
@@ -1,7 +1,7 @@
-/* $NetBSD: luaconf.h,v 1.9 2014/07/19 18:38:34 lneto Exp $ */
+/* $NetBSD: luaconf.h,v 1.9.2.1 2014/12/01 13:11:18 martin Exp $ */
/*
-** $Id: luaconf.h,v 1.9 2014/07/19 18:38:34 lneto Exp $
+** $Id: luaconf.h,v 1.9.2.1 2014/12/01 13:11:18 martin Exp $
** Configuration file for Lua
** See Copyright Notice in lua.h
*/
@@ -13,6 +13,10 @@
#ifndef _KERNEL
#include <limits.h>
#include <stddef.h>
+#else
+/* limits.h */
+#include <machine/limits.h>
+#include <sys/systm.h>
#endif
@@ -696,7 +700,6 @@
#ifndef _KERNEL
#include <stdint.h>
#else
-#include <sys/systm.h>
#undef LUA_NUMBER
#undef LUA_NUMBER_FMT
@@ -723,9 +726,6 @@
#define BUFSIZ (1024)
#define sprintf(s,fmt,...) snprintf(s, sizeof(s), fmt, __VA_ARGS__)
-/* limits.h */
-#include <machine/limits.h>
-
/* string.h */
#define strcoll strcmp
Home |
Main Index |
Thread Index |
Old Index