diff options
Diffstat (limited to 'lfunc.h')
-rw-r--r-- | lfunc.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lfunc.h,v 1.16 2001/09/07 17:39:10 roberto Exp $ | 2 | ** $Id: lfunc.h,v 1.17 2001/10/02 16:45:03 roberto Exp $ |
3 | ** Auxiliary functions to manipulate prototypes and closures | 3 | ** Auxiliary functions to manipulate prototypes and closures |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -19,7 +19,7 @@ void luaF_close (lua_State *L, StkId level); | |||
19 | void luaF_freeproto (lua_State *L, Proto *f); | 19 | void luaF_freeproto (lua_State *L, Proto *f); |
20 | void luaF_freeclosure (lua_State *L, Closure *c); | 20 | void luaF_freeclosure (lua_State *L, Closure *c); |
21 | 21 | ||
22 | const l_char *luaF_getlocalname (const Proto *func, int local_number, int pc); | 22 | const char *luaF_getlocalname (const Proto *func, int local_number, int pc); |
23 | 23 | ||
24 | 24 | ||
25 | #endif | 25 | #endif |