12 lines
213 B
C
12 lines
213 B
C
/* v p r i n t f */
|
|
|
|
#include "stdiolib.h"
|
|
|
|
/*LINTLIBRARY*/
|
|
|
|
int vprintf F2(CONST char *, fmt, VA_LIST, args)
|
|
|
|
{
|
|
return __vfprintf(stdout, fmt, args);
|
|
}
|