diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-05-24 18:11:19 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2017-05-24 18:11:19 -0300 |
| commit | 4804bbd9bbfb89deb8a6c7dc2bc65601a701222b (patch) | |
| tree | e9d2c86ff90548b5fb27a168e18702593370dda8 | |
| parent | be0d951be86ae7628ec22bb8b4b75870c21817ff (diff) | |
| download | lua-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'.)
| -rw-r--r-- | lua.c | 5 |
1 files changed, 3 insertions, 2 deletions
| @@ -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" |
