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

10
lcode.c
View File

@@ -1,16 +1,18 @@
/*
** $Id: lcode.c,v 2.93 2014/10/28 17:27:41 roberto Exp roberto $
** $Id: lcode.c,v 2.94 2014/10/30 18:53:28 roberto Exp roberto $
** Code generator for Lua
** See Copyright Notice in lua.h
*/
#define lcode_c
#define LUA_CORE
#include "lprefix.h"
#include <math.h>
#include <stdlib.h>
#define lcode_c
#define LUA_CORE
#include "lua.h"
#include "lcode.h"