files end with EOF, instead of 0.

This commit is contained in:
Waldemar Celes 1994-10-17 17:04:19 -02:00
parent f8c8159362
commit e9049cbfc9
1 changed files with 3 additions and 5 deletions

View File

@ -4,7 +4,7 @@
** facilities.
*/
char *rcs_inout="$Id: inout.c,v 2.3 1994/09/05 21:22:43 celes Exp celes $";
char *rcs_inout="$Id: inout.c,v 2.4 1994/10/11 14:38:17 celes Exp $";
#include <stdio.h>
#include <stdlib.h>
@ -46,8 +46,7 @@ void lua_errorfunction (void (*fn) (char *s))
*/
static int fileinput (void)
{
int c = fgetc (fp);
return (c == EOF ? 0 : c);
return fgetc (fp);
}
/*
@ -55,8 +54,7 @@ static int fileinput (void)
*/
static int stringinput (void)
{
st++;
return (*(st-1));
return *st++;
}
/*