Skip to content

Commit 4804bbd

Browse files
committed
include first standard header files
(Some broken compiler has problems with 'signal.h' being included without a definition for 'size_t'.)
1 parent be0d951 commit 4804bbd

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

lua.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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 $
33
** Lua stand-alone interpreter
44
** See Copyright Notice in lua.h
55
*/
@@ -9,11 +9,12 @@
99
#include "lprefix.h"
1010

1111

12-
#include <signal.h>
1312
#include <stdio.h>
1413
#include <stdlib.h>
1514
#include <string.h>
1615

16+
#include <signal.h>
17+
1718
#include "lua.h"
1819

1920
#include "lauxlib.h"

0 commit comments

Comments
 (0)