147990Sdonn /*- 2*61180Sbostic * Copyright (c) 1990, 1993 3*61180Sbostic * The Regents of the University of California. 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*61180Sbostic static char sccsid[] = "@(#)vscanf.c 8.1 (Berkeley) 06/04/93"; 1347990Sdonn #endif /* LIBC_SCCS and not lint */ 1447990Sdonn 1547990Sdonn #include <stdio.h> 1647990Sdonn vscanf(fmt,ap)1747990Sdonnvscanf(fmt, ap) 1847990Sdonn const char *fmt; 1954268Sbostic _BSD_VA_LIST_ ap; 2047990Sdonn { 2147990Sdonn 2247990Sdonn return (__svfscanf(stdin, fmt, ap)); 2347990Sdonn } 24