aboutsummaryrefslogtreecommitdiff
path: root/lundump.h
diff options
context:
space:
mode:
Diffstat (limited to 'lundump.h')
-rw-r--r--lundump.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/lundump.h b/lundump.h
index ff66d2e7..1d6e50ea 100644
--- a/lundump.h
+++ b/lundump.h
@@ -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)
37typedef unsigned long long varint_t;
38#else
39typedef unsigned long varint_t;
40#endif
41
42
43/* load one chunk; from lundump.c */ 31/* load one chunk; from lundump.c */
44LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name, 32LUAI_FUNC LClosure* luaU_undump (lua_State* L, ZIO* Z, const char* name,
45 int fixed); 33 int fixed);