diff options
Diffstat (limited to 'lib/libc/stdio/remove.c')
-rw-r--r-- | lib/libc/stdio/remove.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/libc/stdio/remove.c b/lib/libc/stdio/remove.c index 85eaeb9..6a25563 100644 --- a/lib/libc/stdio/remove.c +++ b/lib/libc/stdio/remove.c @@ -35,13 +35,18 @@ */ #if defined(LIBC_SCCS) && !defined(lint) +#if 0 static char sccsid[] = "@(#)remove.c 8.1 (Berkeley) 6/4/93"; +#endif +static const char rcsid[] = + "$Id$"; #endif /* LIBC_SCCS and not lint */ #include <unistd.h> #include <stdio.h> -int remove(file) +int +remove(file) const char *file; { return (unlink(file)); |