12 lines
150 B
C
12 lines
150 B
C
/*
|
|
* vprintf.c
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
int vprintf(const char *format, va_list ap)
|
|
{
|
|
return vfprintf(stdout, format, ap);
|
|
}
|