summaryrefslogtreecommitdiff
path: root/lmathlib.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 /lmathlib.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 'lmathlib.c')
-rw-r--r--lmathlib.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lmathlib.c b/lmathlib.c
index 8ed5deae..9399e7c0 100644
--- a/lmathlib.c
+++ b/lmathlib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lmathlib.c,v 1.23 1999/12/27 17:33:22 roberto Exp roberto $ 2** $Id: lmathlib.c,v 1.24 2000/03/10 18:37:44 roberto Exp roberto $
3** Standard mathematical library 3** Standard mathematical library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -10,8 +10,9 @@
10 10
11#define LUA_REENTRANT 11#define LUA_REENTRANT
12 12
13#include "lauxlib.h"
14#include "lua.h" 13#include "lua.h"
14
15#include "lauxlib.h"
15#include "lualib.h" 16#include "lualib.h"
16 17
17 18