"feof" may be a macro.

This commit is contained in:
Roberto Ierusalimschy 1999-03-05 10:15:50 -03:00
parent 5a8bb00df4
commit e907c711c0
1 changed files with 2 additions and 2 deletions

4
lzio.c
View File

@ -1,5 +1,5 @@
/*
** $Id: lzio.c,v 1.5 1999/02/25 19:13:56 roberto Exp roberto $
** $Id: lzio.c,v 1.6 1999/03/04 14:49:18 roberto Exp roberto $
** a generic input stream interface
** See Copyright Notice in lua.h
*/
@ -43,7 +43,7 @@ ZIO* zsopen (ZIO* z, char* s, char *name)
static int zffilbuf (ZIO* z) {
int n;
if (feof(z->u)) return EOZ;
if (feof((FILE *)z->u)) return EOZ;
n=fread(z->buffer,1,ZBSIZE,z->u);
if (n==0) return EOZ;
z->n=n-1;