summaryrefslogtreecommitdiff
path: root/iolib.c
diff options
context:
space:
mode:
Diffstat (limited to 'iolib.c')
-rw-r--r--iolib.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/iolib.c b/iolib.c
index 4a885f97..f866fb3d 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.1 1993/12/17 18:41:19 celes Exp roberto $"; 6char *rcs_iolib="$Id: iolib.c,v 1.2 1993/12/30 14:52:18 roberto Exp celes $";
7 7
8#include <stdlib.h> 8#include <stdlib.h>
9#include <string.h> 9#include <string.h>
@@ -14,6 +14,8 @@ char *rcs_iolib="$Id: iolib.c,v 1.1 1993/12/17 18:41:19 celes Exp roberto $";
14#include <floatingpoint.h> 14#include <floatingpoint.h>
15#endif 15#endif
16 16
17#include "mm.h"
18
17#include "lua.h" 19#include "lua.h"
18 20
19static FILE *in=stdin, *out=stdout; 21static FILE *in=stdin, *out=stdout;