xref: /csrg-svn/lib/libc/stdio/vscanf.c (revision 47990)
1*47990Sdonn /*-
2*47990Sdonn  * Copyright (c) 1990 The Regents of the University of California.
3*47990Sdonn  * All rights reserved.
4*47990Sdonn  *
5*47990Sdonn  * This code is derived from software contributed to Berkeley by
6*47990Sdonn  * Donn Seeley at UUNET Technologies, Inc.
7*47990Sdonn  *
8*47990Sdonn  * %sccs.include.redist.c%
9*47990Sdonn  */
10*47990Sdonn 
11*47990Sdonn #if defined(LIBC_SCCS) && !defined(lint)
12*47990Sdonn static char sccsid[] = "@(#)vscanf.c	5.1 (Berkeley) 04/15/91";
13*47990Sdonn #endif /* LIBC_SCCS and not lint */
14*47990Sdonn 
15*47990Sdonn #include <stdio.h>
16*47990Sdonn 
17*47990Sdonn vscanf(fmt, ap)
18*47990Sdonn 	const char *fmt;
19*47990Sdonn 	_VA_LIST_ ap;
20*47990Sdonn {
21*47990Sdonn 
22*47990Sdonn 	return (__svfscanf(stdin, fmt, ap));
23*47990Sdonn }
24