Initial revision
This commit is contained in:
12
lib/stdio/feof.c
Executable file
12
lib/stdio/feof.c
Executable file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
* feof.c - test if eof on a stream occurred
|
||||
*/
|
||||
/* $Header$ */
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
int
|
||||
(feof)(FILE *stream)
|
||||
{
|
||||
return feof(stream);
|
||||
}
|
||||
Reference in New Issue
Block a user