TIOCGPGRP copies an int out of the kernel
[unix-history] / usr / src / lib / libc / stdio / vprintf.c
CommitLineData
c9be6cfe
KB
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
5de7ee71
KB
3 * All rights reserved.
4 *
c9be6cfe
KB
5 * This code is derived from software contributed to Berkeley by
6 * Chris Torek.
7 *
019bea33 8 * %sccs.include.redist.c%
5de7ee71
KB
9 */
10
11#if defined(LIBC_SCCS) && !defined(lint)
cb631443 12static char sccsid[] = "@(#)vprintf.c 5.6 (Berkeley) %G%";
5de7ee71
KB
13#endif /* LIBC_SCCS and not lint */
14
15#include <stdio.h>
5de7ee71 16
5de7ee71 17vprintf(fmt, ap)
c9be6cfe
KB
18 char const *fmt;
19 _VA_LIST_ ap;
5de7ee71 20{
c9be6cfe 21 return (vfprintf(stdout, fmt, ap));
5de7ee71 22}