commit 37bf74efb7902cfc075c0249bff513187668adae
parent 8c37d3b9d6e9960fb2a81e2218c28206d4e5298c
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Wed, 16 Oct 1996 18:22:14 -0200
some compilers do not accept "stdin"/"stdout" as constants.
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/iolib.c b/iolib.c
@@ -3,7 +3,7 @@
** Input/output library to LUA
*/
-char *rcs_iolib="$Id: iolib.c,v 1.46 1996/05/27 14:06:58 roberto Exp roberto $";
+char *rcs_iolib="$Id: iolib.c,v 1.47 1996/08/01 14:55:33 roberto Exp roberto $";
#include <stdio.h>
#include <ctype.h>
@@ -16,7 +16,7 @@ char *rcs_iolib="$Id: iolib.c,v 1.46 1996/05/27 14:06:58 roberto Exp roberto $";
#include "luadebug.h"
#include "lualib.h"
-static FILE *in=stdin, *out=stdout;
+static FILE *in, *out;
#ifdef POPEN
@@ -598,6 +598,7 @@ static struct lua_reg iolib[] = {
void iolib_open (void)
{
+ in=stdin; out=stdout;
luaI_openlib(iolib, (sizeof(iolib)/sizeof(iolib[0])));
lua_setfallback("error", errorfb);
}