summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/lauxlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/lauxlib.h')
-rw-r--r--apps/plugins/lua/lauxlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/lua/lauxlib.h b/apps/plugins/lua/lauxlib.h
index a36de351fe..4b4f3be1db 100644
--- a/apps/plugins/lua/lauxlib.h
+++ b/apps/plugins/lua/lauxlib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id$ 2** $Id: lauxlib.h,v 1.88.1.1 2007/12/27 13:02:25 roberto Exp $
3** Auxiliary functions for building Lua libraries 3** Auxiliary functions for building Lua libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -58,7 +58,7 @@ LUALIB_API lua_Integer (luaL_checkinteger) (lua_State *L, int numArg);
58LUALIB_API lua_Integer (luaL_optinteger) (lua_State *L, int nArg, 58LUALIB_API lua_Integer (luaL_optinteger) (lua_State *L, int nArg,
59 lua_Integer def); 59 lua_Integer def);
60 60
61LUALIB_API int (luaL_checkboolean) (lua_State *L, int numArg); 61LUALIB_API int (luaL_checkboolean) (lua_State *L, int nArg);
62LUALIB_API int (luaL_optboolean) (lua_State *L, int nArg, 62LUALIB_API int (luaL_optboolean) (lua_State *L, int nArg,
63 int def); 63 int def);
64 64