date and time created 91/04/15 11:47:09 by donn
authorDonn Seeley <donn@ucbvax.Berkeley.EDU>
Tue, 16 Apr 1991 02:47:09 +0000 (18:47 -0800)
committerDonn Seeley <donn@ucbvax.Berkeley.EDU>
Tue, 16 Apr 1991 02:47:09 +0000 (18:47 -0800)
SCCS-vsn: lib/libc/stdio/vscanf.c 5.1

usr/src/lib/libc/stdio/vscanf.c [new file with mode: 0644]

diff --git a/usr/src/lib/libc/stdio/vscanf.c b/usr/src/lib/libc/stdio/vscanf.c
new file mode 100644 (file)
index 0000000..dd20a27
--- /dev/null
@@ -0,0 +1,23 @@
+/*-
+ * Copyright (c) 1990 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Donn Seeley at UUNET Technologies, Inc.
+ *
+ * %sccs.include.redist.c%
+ */
+
+#if defined(LIBC_SCCS) && !defined(lint)
+static char sccsid[] = "@(#)vscanf.c   5.1 (Berkeley) %G%";
+#endif /* LIBC_SCCS and not lint */
+
+#include <stdio.h>
+
+vscanf(fmt, ap)
+       const char *fmt;
+       _VA_LIST_ ap;
+{
+
+       return (__svfscanf(stdin, fmt, ap));
+}