8 lines
142 B
C
8 lines
142 B
C
|
|
#include <stdio.h>
|
||
|
|
#include "__printf.h"
|
||
|
|
|
||
|
|
int vprintf(const char *restrict format, va_list arg)
|
||
|
|
{
|
||
|
|
return vfprintf(stdout, format, arg);
|
||
|
|
}
|