diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-05-15 09:20:04 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2003-05-15 09:20:04 -0300 |
commit | 859c7f7ce0ce6dfdbd3586535a47eaf562d60f37 (patch) | |
tree | 4fd076ce7955495f223361d3914a68a0339ffbf7 /lundump.h | |
parent | 56c5e749cc3dfd2e9fdbee3c48bee7a357eb059f (diff) | |
download | lua-859c7f7ce0ce6dfdbd3586535a47eaf562d60f37.tar.gz lua-859c7f7ce0ce6dfdbd3586535a47eaf562d60f37.tar.bz2 lua-859c7f7ce0ce6dfdbd3586535a47eaf562d60f37.zip |
LUA_SIGNATURE is public
Diffstat (limited to 'lundump.h')
-rw-r--r-- | lundump.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lundump.h,v 1.30 2003/04/07 20:34:20 lhf Exp $ | 2 | ** $Id: lundump.h,v 1.31 2003/04/10 17:39:41 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 | */ |
@@ -23,7 +23,6 @@ void luaU_dump (lua_State* L, const Proto* Main, lua_Chunkwriter w, void* data); | |||
23 | void luaU_print (const Proto* Main); | 23 | void luaU_print (const Proto* Main); |
24 | 24 | ||
25 | /* definitions for headers of binary files */ | 25 | /* definitions for headers of binary files */ |
26 | #define LUA_SIGNATURE "\033Lua" /* binary files start with "<esc>Lua" */ | ||
27 | #define VERSION 0x50 /* last format change was in 5.0 */ | 26 | #define VERSION 0x50 /* last format change was in 5.0 */ |
28 | #define VERSION0 0x50 /* last major change was in 5.0 */ | 27 | #define VERSION0 0x50 /* last major change was in 5.0 */ |
29 | 28 | ||