From 4804bbd9bbfb89deb8a6c7dc2bc65601a701222b Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 24 May 2017 18:11:19 -0300 Subject: include first standard header files (Some broken compiler has problems with 'signal.h' being included without a definition for 'size_t'.) --- lua.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lua.c') diff --git a/lua.c b/lua.c index 2f011861..8d5184b3 100644 --- a/lua.c +++ b/lua.c @@ -1,5 +1,5 @@ /* -** $Id: lua.c,v 1.230 2017/01/12 17:14:26 roberto Exp roberto $ +** $Id: lua.c,v 1.231 2017/04/19 12:49:17 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ @@ -9,11 +9,12 @@ #include "lprefix.h" -#include #include #include #include +#include + #include "lua.h" #include "lauxlib.h" -- cgit v1.2.3-55-g6feb