diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-10 15:37:44 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-10 15:37:44 -0300 |
commit | 73aa465a8ed8dee6c6a27a6f8b2f51227b70789d (patch) | |
tree | 496a63ffffe0312f1d0b9882d97944fa38ed7801 /lundump.h | |
parent | 3d0577f4b98908be3f2d697ab75c5fbbd3f6999b (diff) | |
download | lua-73aa465a8ed8dee6c6a27a6f8b2f51227b70789d.tar.gz lua-73aa465a8ed8dee6c6a27a6f8b2f51227b70789d.tar.bz2 lua-73aa465a8ed8dee6c6a27a6f8b2f51227b70789d.zip |
some name changes
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); |