aboutsummaryrefslogtreecommitdiff
path: root/lundump.h
diff options
context:
space:
mode:
Diffstat (limited to 'lundump.h')
-rw-r--r--lundump.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lundump.h b/lundump.h
index 4c582ad5..b3171a80 100644
--- a/lundump.h
+++ b/lundump.h
@@ -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 */
14TProtoFunc* luaU_undump1 (lua_State* L, ZIO* Z); 14Proto* luaU_undump1 (lua_State* L, ZIO* Z);
15 15
16/* handle cases that cannot happen */ 16/* handle cases that cannot happen */
17void luaU_badconstant (lua_State* L, const char* s, int i, 17void 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 */
21double luaU_str2d (lua_State* L, const char* b, const char* where); 21double luaU_str2d (lua_State* L, const char* b, const char* where);