diff options
Diffstat (limited to 'lundump.h')
-rw-r--r-- | lundump.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lundump.h,v 1.18 2000/01/28 17:51:09 lhf Exp $ | 2 | ** $Id: lundump.h,v 1.13 2000/03/03 14:58:26 roberto Exp roberto $ |
3 | ** load pre-compiled Lua chunks | 3 | ** load pre-compiled Lua chunks |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -11,11 +11,11 @@ | |||
11 | #include "lzio.h" | 11 | #include "lzio.h" |
12 | 12 | ||
13 | /* load one chunk */ | 13 | /* load one chunk */ |
14 | TProtoFunc* luaU_undump1 (lua_State* L, ZIO* Z); | 14 | Proto* luaU_undump1 (lua_State* L, ZIO* Z); |
15 | 15 | ||
16 | /* handle cases that cannot happen */ | 16 | /* handle cases that cannot happen */ |
17 | void luaU_badconstant (lua_State* L, const char* s, int i, | 17 | void luaU_badconstant (lua_State* L, const char* s, int i, |
18 | const TObject* o, const TProtoFunc* tf); | 18 | const TObject* o, const Proto* tf); |
19 | 19 | ||
20 | /* convert number from text */ | 20 | /* convert number from text */ |
21 | double luaU_str2d (lua_State* L, const char* b, const char* where); | 21 | double luaU_str2d (lua_State* L, const char* b, const char* where); |