aboutsummaryrefslogtreecommitdiff
path: root/lobject.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 /lobject.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 'lobject.c')
-rw-r--r--lobject.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/lobject.c b/lobject.c
index 78f71179..bdcb8257 100644
--- a/lobject.c
+++ b/lobject.c
@@ -1,17 +1,20 @@
1/* 1/*
2** $Id: lobject.c,v 2.96 2014/10/27 19:21:56 roberto Exp roberto $ 2** $Id: lobject.c,v 2.97 2014/10/28 18:41:38 roberto Exp roberto $
3** Some generic functions over Lua objects 3** Some generic functions over Lua objects
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
6 6
7#define lobject_c
8#define LUA_CORE
9
10#include "lprefix.h"
11
12
7#include <stdarg.h> 13#include <stdarg.h>
8#include <stdio.h> 14#include <stdio.h>
9#include <stdlib.h> 15#include <stdlib.h>
10#include <string.h> 16#include <string.h>
11 17
12#define lobject_c
13#define LUA_CORE
14
15#include "lua.h" 18#include "lua.h"
16 19
17#include "lctype.h" 20#include "lctype.h"