From 762c7370376dbd13cd8aeb4d8c8da0bb153269c3 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 10 Apr 2003 14:39:41 -0300 Subject: last changes by lhf --- lundump.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lundump.h') diff --git a/lundump.h b/lundump.h index 474075a0..c7e6959b 100644 --- a/lundump.h +++ b/lundump.h @@ -1,5 +1,5 @@ /* -** $Id: lundump.h,v 1.28 2002/12/13 11:12:35 lhf Exp $ +** $Id: lundump.h,v 1.30 2003/04/07 20:34:20 lhf Exp $ ** load pre-compiled Lua chunks ** See Copyright Notice in lua.h */ @@ -23,12 +23,12 @@ void luaU_dump (lua_State* L, const Proto* Main, lua_Chunkwriter w, void* data); void luaU_print (const Proto* Main); /* definitions for headers of binary files */ -#define LUA_SIGNATURE "\033Lua" /* binary files start with Lua */ +#define LUA_SIGNATURE "\033Lua" /* binary files start with "Lua" */ #define VERSION 0x50 /* last format change was in 5.0 */ #define VERSION0 0x50 /* last major change was in 5.0 */ /* a multiple of PI for testing native format */ -/* multiplying by 1E8 gives non-trivial integer values */ -#define TEST_NUMBER 3.14159265358979323846E8 +/* multiplying by 1E7 gives non-trivial integer values */ +#define TEST_NUMBER ((lua_Number)3.14159265358979323846E7) #endif -- cgit v1.2.3-55-g6feb