aboutsummaryrefslogtreecommitdiff
path: root/lfunc.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-06-12 10:52:05 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-06-12 10:52:05 -0300
commit1de5587184eb2d8d9f379c661f77f7e450764894 (patch)
tree9be30539af6392679e56ae3cf336e2d2befc8255 /lfunc.c
parent8ca9534d048782af13141874e0d2fec0d0f806af (diff)
downloadlua-1de5587184eb2d8d9f379c661f77f7e450764894.tar.gz
lua-1de5587184eb2d8d9f379c661f77f7e450764894.tar.bz2
lua-1de5587184eb2d8d9f379c661f77f7e450764894.zip
`lua.h' is included before any other Lua header file
Diffstat (limited to 'lfunc.c')
-rw-r--r--lfunc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lfunc.c b/lfunc.c
index 8893fa5b..39753bdc 100644
--- a/lfunc.c
+++ b/lfunc.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lfunc.c,v 1.22 2000/05/24 13:54:49 roberto Exp roberto $ 2** $Id: lfunc.c,v 1.23 2000/05/30 19:00:31 roberto Exp roberto $
3** Auxiliary functions to manipulate prototypes and closures 3** Auxiliary functions to manipulate prototypes and closures
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -9,6 +9,8 @@
9 9
10#define LUA_REENTRANT 10#define LUA_REENTRANT
11 11
12#include "lua.h"
13
12#include "lfunc.h" 14#include "lfunc.h"
13#include "lmem.h" 15#include "lmem.h"
14#include "lstate.h" 16#include "lstate.h"