]> pd.if.org Git - pdclib/blob - functions/stdio/vprintf.c
Porting current working set from CVS.
[pdclib] / functions / stdio / vprintf.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* vprintf( const char *, va_list arg )
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 #include <stdio.h>
12 #include <stdarg.h>
13
14 #ifndef REGTEST
15
16 int vprintf( const char * _PDCLIB_restrict format, _PDCLIB_va_list arg )
17 {
18     return vfprintf( stdout, format, arg );
19 }
20
21 #endif
22
23 #ifdef TEST
24 #include <_PDCLIB_test.h>
25
26 int main( void )
27 {
28     TESTCASE( NO_TESTDRIVER );
29     return TEST_RESULTS;
30 }
31
32 #endif