summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/vscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stdio/vscanf.c')
-rw-r--r--lib/libc/stdio/vscanf.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/stdio/vscanf.c b/lib/libc/stdio/vscanf.c
index f0c15e0903f..5c8b5379cbe 100644
--- a/lib/libc/stdio/vscanf.c
+++ b/lib/libc/stdio/vscanf.c
@@ -31,15 +31,13 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: vscanf.c,v 1.4 2003/06/02 20:18:37 millert Exp $";
+static char rcsid[] = "$OpenBSD: vscanf.c,v 1.5 2004/09/28 18:12:44 otto Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdio.h>
int
-vscanf(fmt, ap)
- const char *fmt;
- _BSD_VA_LIST_ ap;
+vscanf(const char *fmt, _BSD_VA_LIST_ ap)
{
return (__svfscanf(stdin, fmt, ap));