added include for 'lprefix.h', for stuff that must be added before

any other header file
This commit is contained in:
Roberto Ierusalimschy
2014-11-02 17:19:04 -02:00
parent c25072a246
commit 28fdbcf393
35 changed files with 199 additions and 146 deletions

View File

@@ -1,16 +1,18 @@
/*
** $Id: lstate.c,v 2.124 2014/07/24 14:00:16 roberto Exp roberto $
** $Id: lstate.c,v 2.125 2014/07/24 16:17:56 roberto Exp roberto $
** Global State
** See Copyright Notice in lua.h
*/
#define lstate_c
#define LUA_CORE
#include "lprefix.h"
#include <stddef.h>
#include <string.h>
#define lstate_c
#define LUA_CORE
#include "lua.h"
#include "lapi.h"