lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 4804bbd9bbfb89deb8a6c7dc2bc65601a701222b
parent be0d951be86ae7628ec22bb8b4b75870c21817ff
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Wed, 24 May 2017 18:10:52 -0300

include first standard header files
(Some broken compiler has problems with 'signal.h' being included
without a definition for 'size_t'.)

Diffstat:
Mlua.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git 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 <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <signal.h> + #include "lua.h" #include "lauxlib.h"