diff options
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.59 2003/03/18 12:25:32 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.60 2003/04/03 13:35:34 roberto Exp roberto $ |
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 | */ |
@@ -62,6 +62,8 @@ LUALIB_API int luaL_loadfile (lua_State *L, const char *filename); | |||
62 | LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t sz, | 62 | LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t sz, |
63 | const char *name); | 63 | const char *name); |
64 | 64 | ||
65 | LUALIB_API lua_State *(luaL_newstate) (void); | ||
66 | |||
65 | 67 | ||
66 | 68 | ||
67 | /* | 69 | /* |