diff options
Diffstat (limited to 'lua.c')
-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" |