diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-10-02 17:31:17 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-10-02 17:31:17 -0300 |
| commit | b97fb932ece7872a8d1dd6c0a2c88f3ce33e9741 (patch) | |
| tree | d9e60044a35ad3fdf761f28506be08205081ebd7 /lauxlib.h | |
| parent | c7cf92e6f318823406e40ad6016e5ccb4e041c72 (diff) | |
| download | lua-b97fb932ece7872a8d1dd6c0a2c88f3ce33e9741.tar.gz lua-b97fb932ece7872a8d1dd6c0a2c88f3ce33e9741.tar.bz2 lua-b97fb932ece7872a8d1dd6c0a2c88f3ce33e9741.zip | |
Lua kernel does not use malloc/free functions.
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 | /* |
