aboutsummaryrefslogtreecommitdiff
path: root/lua.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-05-24 18:11:19 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2017-05-24 18:11:19 -0300
commit4804bbd9bbfb89deb8a6c7dc2bc65601a701222b (patch)
treee9d2c86ff90548b5fb27a168e18702593370dda8 /lua.c
parentbe0d951be86ae7628ec22bb8b4b75870c21817ff (diff)
downloadlua-4804bbd9bbfb89deb8a6c7dc2bc65601a701222b.tar.gz
lua-4804bbd9bbfb89deb8a6c7dc2bc65601a701222b.tar.bz2
lua-4804bbd9bbfb89deb8a6c7dc2bc65601a701222b.zip
include first standard header files
(Some broken compiler has problems with 'signal.h' being included without a definition for 'size_t'.)
Diffstat (limited to 'lua.c')
-rw-r--r--lua.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lua.c b/lua.c
index 2f011861..8d5184b3 100644
--- a/lua.c
+++ b/lua.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.c,v 1.230 2017/01/12 17:14:26 roberto Exp roberto $ 2** $Id: lua.c,v 1.231 2017/04/19 12:49:17 roberto Exp roberto $
3** Lua stand-alone interpreter 3** Lua stand-alone interpreter
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -9,11 +9,12 @@
9#include "lprefix.h" 9#include "lprefix.h"
10 10
11 11
12#include <signal.h>
13#include <stdio.h> 12#include <stdio.h>
14#include <stdlib.h> 13#include <stdlib.h>
15#include <string.h> 14#include <string.h>
16 15
16#include <signal.h>
17
17#include "lua.h" 18#include "lua.h"
18 19
19#include "lauxlib.h" 20#include "lauxlib.h"