xref: /csrg-svn/lib/libc/stdio/vprintf.c (revision 61180)
146109Sbostic /*-
2*61180Sbostic  * Copyright (c) 1990, 1993
3*61180Sbostic  *	The Regents of the University of California.  All rights reserved.
434470Sbostic  *
546109Sbostic  * This code is derived from software contributed to Berkeley by
646109Sbostic  * Chris Torek.
746109Sbostic  *
842633Sbostic  * %sccs.include.redist.c%
934470Sbostic  */
1034470Sbostic 
1134470Sbostic #if defined(LIBC_SCCS) && !defined(lint)
12*61180Sbostic static char sccsid[] = "@(#)vprintf.c	8.1 (Berkeley) 06/04/93";
1334470Sbostic #endif /* LIBC_SCCS and not lint */
1434470Sbostic 
1534470Sbostic #include <stdio.h>
1634470Sbostic 
vprintf(fmt,ap)1734470Sbostic vprintf(fmt, ap)
1846109Sbostic 	char const *fmt;
1954268Sbostic 	_BSD_VA_LIST_ ap;
2034470Sbostic {
2146109Sbostic 	return (vfprintf(stdout, fmt, ap));
2234470Sbostic }
23