aboutsummaryrefslogtreecommitdiff
path: root/ltable.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-02 17:19:04 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-02 17:19:04 -0200
commit28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9 (patch)
treeeaac6c45a621d7f0176ce8f57df3cca1ca8d30f6 /ltable.c
parentc25072a246eddff711ebec8e4acce9593bc5ff70 (diff)
downloadlua-28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9.tar.gz
lua-28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9.tar.bz2
lua-28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9.zip
added include for 'lprefix.h', for stuff that must be added before
any other header file
Diffstat (limited to 'ltable.c')
-rw-r--r--ltable.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/ltable.c b/ltable.c
index 71259630..131a9aa2 100644
--- a/ltable.c
+++ b/ltable.c
@@ -1,9 +1,14 @@
1/* 1/*
2** $Id: ltable.c,v 2.97 2014/10/24 11:42:06 roberto Exp roberto $ 2** $Id: ltable.c,v 2.98 2014/10/25 11:50:46 roberto Exp roberto $
3** Lua tables (hash) 3** Lua tables (hash)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6
7#define ltable_c
8#define LUA_CORE
9
10#include "lprefix.h"
11
7 12
8/* 13/*
9** Implementation of tables (aka arrays, objects, or hash tables). 14** Implementation of tables (aka arrays, objects, or hash tables).
@@ -23,9 +28,6 @@
23#include <string.h> 28#include <string.h>
24#include <limits.h> 29#include <limits.h>
25 30
26#define ltable_c
27#define LUA_CORE
28
29#include "lua.h" 31#include "lua.h"
30 32
31#include "ldebug.h" 33#include "ldebug.h"