Files

8 lines
142 B
C
Raw Permalink Normal View History

2020-04-03 19:21:22 +01:00
#include <stdio.h>
#include "__printf.h"
int vprintf(const char *restrict format, va_list arg)
{
return vfprintf(stdout, format, arg);
}