diff options
Diffstat (limited to 'lib/libc/stdio/fprintf.c')
-rw-r--r-- | lib/libc/stdio/fprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/fprintf.c b/lib/libc/stdio/fprintf.c index a391142ea25..abc04b01951 100644 --- a/lib/libc/stdio/fprintf.c +++ b/lib/libc/stdio/fprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fprintf.c,v 1.7 2011/05/30 18:48:33 martynas Exp $ */ +/* $OpenBSD: fprintf.c,v 1.8 2015/08/31 02:53:57 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -34,7 +34,6 @@ #include <stdio.h> #include <stdarg.h> -/* PRINTFLIKE2 */ int fprintf(FILE *fp, const char *fmt, ...) { @@ -46,3 +45,4 @@ fprintf(FILE *fp, const char *fmt, ...) va_end(ap); return (ret); } +DEF_STRONG(fprintf); |