aboutsummaryrefslogtreecommitdiff
path: root/lundump.h
diff options
context:
space:
mode:
Diffstat (limited to 'lundump.h')
-rw-r--r--lundump.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lundump.h b/lundump.h
index 7f9ecc27..6a7ca970 100644
--- a/lundump.h
+++ b/lundump.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lundump.h,v 1.24 2001/07/19 14:34:06 lhf Exp lhf $ 2** $Id: lundump.h,v 1.26 2002/08/07 00:36:03 lhf Exp $
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*/
@@ -10,7 +10,7 @@
10#include "lobject.h" 10#include "lobject.h"
11#include "lzio.h" 11#include "lzio.h"
12 12
13typedef size_t (*Writer)(const void* p, size_t size, size_t n, void* u); 13typedef int (*Writer)(const void* p, size_t size, void* u);
14 14
15/* load one chunk; from lundump.c */ 15/* load one chunk; from lundump.c */
16Proto* luaU_undump (lua_State* L, ZIO* Z); 16Proto* luaU_undump (lua_State* L, ZIO* Z);