include first standard header files

(Some broken compiler has problems with 'signal.h' being included
without a definition for 'size_t'.)
This commit is contained in:
Roberto Ierusalimschy 2017-05-24 18:11:19 -03:00
parent be0d951be8
commit 4804bbd9bb

5
lua.c
View File

@ -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"