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 98e39603f04..de365c224f3 100644 --- a/lib/libc/stdio/fputc.c +++ b/lib/libc/stdio/fputc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fputc.c,v 1.10 2009/11/09 00:18:27 kurt Exp $ */ +/* $OpenBSD: fputc.c,v 1.11 2015/08/31 02:53:57 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -39,3 +39,4 @@ fputc(int c, FILE *fp) { return (putc(c, fp)); } +DEF_STRONG(fputc); |