diff options
Diffstat (limited to 'lib/libc/stdio/vprintf.c')
-rw-r--r-- | lib/libc/stdio/vprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/vprintf.c b/lib/libc/stdio/vprintf.c index e72af0fd2ab..304f5352672 100644 --- a/lib/libc/stdio/vprintf.c +++ b/lib/libc/stdio/vprintf.c @@ -31,13 +31,13 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: vprintf.c,v 1.5 2004/09/28 18:12:44 otto Exp $"; +static char rcsid[] = "$OpenBSD: vprintf.c,v 1.6 2005/03/31 18:36:29 pat Exp $"; #endif /* LIBC_SCCS and not lint */ #include <stdio.h> int -vprintf(char const *fmt, _BSD_VA_LIST_ ap) +vprintf(const char *fmt, _BSD_VA_LIST_ ap) { return (vfprintf(stdout, fmt, ap)); } |