xref: /original-bsd/lib/libc/stdio/vprintf.c (revision 2622b709)
1 /*
2  * Copyright (c) 1988 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #if defined(LIBC_SCCS) && !defined(lint)
9 static char sccsid[] = "@(#)vprintf.c	5.3 (Berkeley) 06/01/90";
10 #endif /* LIBC_SCCS and not lint */
11 
12 #include <stdio.h>
13 #include <varargs.h>
14 
15 int
16 vprintf(fmt, ap)
17 	char *fmt;
18 	va_list ap;
19 {
20 	int len;
21 
22 	len = _doprnt(fmt, ap, stdout);
23 	return (ferror(stdout) ? EOF : len);
24 }
25