diff options
| author | James Raynard <jraynard@FreeBSD.org> | 1996-06-12 23:02:53 +0000 | 
|---|---|---|
| committer | James Raynard <jraynard@FreeBSD.org> | 1996-06-12 23:02:53 +0000 | 
| commit | e2f892a7e7372765034792444d363d813bea9f49 (patch) | |
| tree | a98bcf4ff0d6419747cbaa0bd558a7543f694f2c /lib/libc/stdio | |
| parent | 45f6af02524004681276825c75dc734695d119ac (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdio')
| -rw-r--r-- | lib/libc/stdio/feof.c | 3 | ||||
| -rw-r--r-- | lib/libc/stdio/remove.c | 2 | 
2 files changed, 3 insertions, 2 deletions
| diff --git a/lib/libc/stdio/feof.c b/lib/libc/stdio/feof.c index 7f580579561f..efcdc4076601 100644 --- a/lib/libc/stdio/feof.c +++ b/lib/libc/stdio/feof.c @@ -45,7 +45,8 @@ static char sccsid[] = "@(#)feof.c	8.1 (Berkeley) 6/4/93";   */  #undef feof -feof(fp) + +int feof(fp)  	FILE *fp;  {  	return (__sfeof(fp)); diff --git a/lib/libc/stdio/remove.c b/lib/libc/stdio/remove.c index 216535a94ac5..85eaeb933ff1 100644 --- a/lib/libc/stdio/remove.c +++ b/lib/libc/stdio/remove.c @@ -41,7 +41,7 @@ static char sccsid[] = "@(#)remove.c	8.1 (Berkeley) 6/4/93";  #include <unistd.h>  #include <stdio.h> -remove(file) +int remove(file)  	const char *file;  {  	return (unlink(file)); | 
