diff options
-rw-r--r-- | lib/libc/stdio/putc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/putc.c b/lib/libc/stdio/putc.c index 9461aa90aae..762fecb2d38 100644 --- a/lib/libc/stdio/putc.c +++ b/lib/libc/stdio/putc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: putc.c,v 1.11 2009/11/21 09:53:44 guenther Exp $ */ +/* $OpenBSD: putc.c,v 1.12 2009/11/21 10:11:54 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -57,7 +57,7 @@ putc_unlocked(int c, FILE *fp) #undef putc int -fputc(int c, FILE *fp) +putc(int c, FILE *fp) { int ret; |