From 1de5587184eb2d8d9f379c661f77f7e450764894 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 12 Jun 2000 10:52:05 -0300 Subject: `lua.h' is included before any other Lua header file --- lobject.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lobject.c') diff --git a/lobject.c b/lobject.c index 26a6855e..d500fd1c 100644 --- a/lobject.c +++ b/lobject.c @@ -1,5 +1,5 @@ /* -** $Id: lobject.c,v 1.39 2000/05/24 13:54:49 roberto Exp roberto $ +** $Id: lobject.c,v 1.40 2000/06/08 17:48:31 roberto Exp roberto $ ** Some generic functions over Lua objects ** See Copyright Notice in lua.h */ @@ -9,9 +9,10 @@ #define LUA_REENTRANT -#include "lobject.h" #include "lua.h" +#include "lobject.h" + const char *const luaO_typenames[] = { /* ORDER LUA_T */ "userdata", "number", "string", "table", "function", "function", "nil", -- cgit v1.2.3-55-g6feb