diff options
author | 2009-11-21 10:11:54 +0000 | |
---|---|---|
committer | 2009-11-21 10:11:54 +0000 | |
commit | bcafc63e5b30e2959d417550d964f62ebc5b9ae2 (patch) | |
tree | f89903024aeacb94f488aa85a9467253101d29d8 /lib/libc/stdio/putc.c | |
parent | Add a (hopefully) comprehensive regression test of how stdio functions (diff) | |
download | wireguard-openbsd-bcafc63e5b30e2959d417550d964f62ebc5b9ae2.tar.xz wireguard-openbsd-bcafc63e5b30e2959d417550d964f62ebc5b9ae2.zip |
Ooops, committed an unbaked change
Diffstat (limited to 'lib/libc/stdio/putc.c')
-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; |