13 lines
179 B
C
13 lines
179 B
C
#include <stddef.h>
|
|
#include <stdio.h>
|
|
|
|
int printf(const char *format, ...)
|
|
{
|
|
va_list arg;
|
|
va_start(arg, format);
|
|
int ret = vprintf(format, arg);
|
|
va_end(arg);
|
|
|
|
return ret;
|
|
}
|