lua

A copy of the Lua development repository
Log | Files | Refs | README

commit b6791f5fa552cbf299a754c1c750f8422c6fb991
parent 3b058177af1f940b8f6128821b3f4a3f3dc79ed0
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Mon, 12 Aug 2002 10:36:57 -0300

details

Diffstat:
Mlundump.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lundump.h b/lundump.h @@ -1,5 +1,5 @@ /* -** $Id: lundump.h,v 1.24 2001/07/19 14:34:06 lhf Exp lhf $ +** $Id: lundump.h,v 1.26 2002/08/07 00:36:03 lhf Exp $ ** load pre-compiled Lua chunks ** See Copyright Notice in lua.h */ @@ -10,7 +10,7 @@ #include "lobject.h" #include "lzio.h" -typedef size_t (*Writer)(const void* p, size_t size, size_t n, void* u); +typedef int (*Writer)(const void* p, size_t size, void* u); /* load one chunk; from lundump.c */ Proto* luaU_undump (lua_State* L, ZIO* Z);