diff options
Diffstat (limited to 'lib/libc/stdio/vwprintf.c')
-rw-r--r-- | lib/libc/stdio/vwprintf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/vwprintf.c b/lib/libc/stdio/vwprintf.c index 49569c1a27e..9598d331a3f 100644 --- a/lib/libc/stdio/vwprintf.c +++ b/lib/libc/stdio/vwprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vwprintf.c,v 1.3 2011/04/28 17:38:46 stsp Exp $ */ +/* $OpenBSD: vwprintf.c,v 1.4 2015/08/31 02:53:57 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -40,3 +40,4 @@ vwprintf(const wchar_t * __restrict fmt, __va_list ap) { return (vfwprintf(stdout, fmt, ap)); } +DEF_STRONG(vwprintf); |