new stdio; renamed from flsbuf.c
[unix-history] / usr / src / lib / libc / stdio / vprintf.c
CommitLineData
5de7ee71
KB
1/*
2 * Copyright (c) 1988 Regents of the University of California.
3 * All rights reserved.
4 *
019bea33 5 * %sccs.include.redist.c%
5de7ee71
KB
6 */
7
8#if defined(LIBC_SCCS) && !defined(lint)
019bea33 9static char sccsid[] = "@(#)vprintf.c 5.3 (Berkeley) %G%";
5de7ee71
KB
10#endif /* LIBC_SCCS and not lint */
11
12#include <stdio.h>
13#include <varargs.h>
14
15int
16vprintf(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}