diff options
Diffstat (limited to 'lib/libc/stdio/printf.c')
-rw-r--r-- | lib/libc/stdio/printf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/printf.c b/lib/libc/stdio/printf.c index 09bb3d7f7db..d8b6f09fcac 100644 --- a/lib/libc/stdio/printf.c +++ b/lib/libc/stdio/printf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printf.c,v 1.8 2011/05/30 18:48:33 martynas Exp $ */ +/* $OpenBSD: printf.c,v 1.9 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> -/* PRINTFLIKE1 */ int printf(const char *fmt, ...) { @@ -46,3 +45,4 @@ printf(const char *fmt, ...) va_end(ap); return (ret); } +DEF_STRONG(printf); |