Incorporate bsdmake into buildsystem and reorganize libs
This commit is contained in:
12
lib/libc/stdio/feof.c
Normal file
12
lib/libc/stdio/feof.c
Normal 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