diff options
Diffstat (limited to 'lundump.h')
-rw-r--r-- | lundump.h | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -28,18 +28,6 @@ | |||
28 | #define LUAC_FORMAT 0 /* this is the official format */ | 28 | #define LUAC_FORMAT 0 /* this is the official format */ |
29 | 29 | ||
30 | 30 | ||
31 | /* | ||
32 | ** Type to handle MSB Varint encoding: Try to get the largest unsigned | ||
33 | ** integer available. (It was enough to be the largest between size_t and | ||
34 | ** lua_Integer, but the C89 preprocessor knows nothing about size_t.) | ||
35 | */ | ||
36 | #if !defined(LUA_USE_C89) && defined(LLONG_MAX) | ||
37 | typedef unsigned long long varint_t; | ||
38 | #else | ||
39 | typedef unsigned long varint_t; | ||
40 | #endif | ||
41 | |||
42 | |||
43 | /* load one chunk; from lundump.c */ | 31 | /* load one chunk; from lundump.c */ |
44 | LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name, | 32 | LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name, |
45 | int fixed); | 33 | int fixed); |