xref: /csrg-svn/lib/libc/stdio/vscanf.c (revision 54268)
147990Sdonn /*-
247990Sdonn  * Copyright (c) 1990 The Regents of the University of California.
347990Sdonn  * All rights reserved.
447990Sdonn  *
547990Sdonn  * This code is derived from software contributed to Berkeley by
647990Sdonn  * Donn Seeley at UUNET Technologies, Inc.
747990Sdonn  *
847990Sdonn  * %sccs.include.redist.c%
947990Sdonn  */
1047990Sdonn 
1147990Sdonn #if defined(LIBC_SCCS) && !defined(lint)
12*54268Sbostic static char sccsid[] = "@(#)vscanf.c	5.2 (Berkeley) 06/23/92";
1347990Sdonn #endif /* LIBC_SCCS and not lint */
1447990Sdonn 
1547990Sdonn #include <stdio.h>
1647990Sdonn 
1747990Sdonn vscanf(fmt, ap)
1847990Sdonn 	const char *fmt;
19*54268Sbostic 	_BSD_VA_LIST_ ap;
2047990Sdonn {
2147990Sdonn 
2247990Sdonn 	return (__svfscanf(stdin, fmt, ap));
2347990Sdonn }
24