diff options
Diffstat (limited to 'lib/libc/stdio/fputc.c')
-rw-r--r-- | lib/libc/stdio/fputc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/fputc.c b/lib/libc/stdio/fputc.c index ed6c256f5c9..056550637c4 100644 --- a/lib/libc/stdio/fputc.c +++ b/lib/libc/stdio/fputc.c @@ -35,13 +35,14 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fputc.c,v 1.3 1996/10/28 05:32:54 tholo Exp $"; +static char rcsid[] = "$OpenBSD: fputc.c,v 1.4 2001/07/09 06:57:44 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include <stdio.h> #include <errno.h> #include "local.h" +int fputc(c, fp) int c; register FILE *fp; |