aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--iolib.c4
-rw-r--r--strlib.c5
-rw-r--r--table.c4
3 files changed, 3 insertions, 10 deletions
diff --git a/iolib.c b/iolib.c
index ff568d23..375a70f9 100644
--- a/iolib.c
+++ b/iolib.c
@@ -3,7 +3,7 @@
3** Input/output library to LUA 3** Input/output library to LUA
4*/ 4*/
5 5
6char *rcs_iolib="$Id: iolib.c,v 1.11 1994/10/13 17:18:32 celes Exp celes $"; 6char *rcs_iolib="$Id: iolib.c,v 1.12 1994/10/13 19:28:54 celes Exp roberto $";
7 7
8#include <stdlib.h> 8#include <stdlib.h>
9#include <string.h> 9#include <string.h>
@@ -14,8 +14,6 @@ char *rcs_iolib="$Id: iolib.c,v 1.11 1994/10/13 17:18:32 celes Exp celes $";
14#include <floatingpoint.h> 14#include <floatingpoint.h>
15#endif 15#endif
16 16
17#include "mm.h"
18
19#include "lua.h" 17#include "lua.h"
20#include "lualib.h" 18#include "lualib.h"
21 19
diff --git a/strlib.c b/strlib.c
index 9f683362..0cd9104b 100644
--- a/strlib.c
+++ b/strlib.c
@@ -3,15 +3,12 @@
3** String library to LUA 3** String library to LUA
4*/ 4*/
5 5
6char *rcs_strlib="$Id: strlib.c,v 1.2 1994/03/28 15:14:02 celes Exp celes $"; 6char *rcs_strlib="$Id: strlib.c,v 1.3 1994/08/17 15:10:04 celes Exp roberto $";
7 7
8#include <stdlib.h> 8#include <stdlib.h>
9#include <string.h> 9#include <string.h>
10#include <ctype.h> 10#include <ctype.h>
11 11
12#include "mm.h"
13
14
15#include "lua.h" 12#include "lua.h"
16#include "lualib.h" 13#include "lualib.h"
17 14
diff --git a/table.c b/table.c
index b9e3449c..ba3d55c4 100644
--- a/table.c
+++ b/table.c
@@ -3,13 +3,11 @@
3** Module to control static tables 3** Module to control static tables
4*/ 4*/
5 5
6char *rcs_table="$Id: table.c,v 2.4 1994/10/17 19:03:23 celes Exp roberto $"; 6char *rcs_table="$Id: table.c,v 2.5 1994/10/17 21:45:00 roberto Exp roberto $";
7 7
8#include <stdlib.h> 8#include <stdlib.h>
9#include <string.h> 9#include <string.h>
10 10
11#include "mm.h"
12
13#include "opcode.h" 11#include "opcode.h"
14#include "tree.h" 12#include "tree.h"
15#include "hash.h" 13#include "hash.h"