`lua.h' is included before any other Lua header file

This commit is contained in:
Roberto Ierusalimschy
2000-06-12 10:52:05 -03:00
parent 8ca9534d04
commit 1de5587184
28 changed files with 82 additions and 44 deletions

View File

@@ -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",