musl-tcc/src/stdio/vprintf.c

7 lines
109 B
C
Raw Normal View History

2022-03-20 04:48:53 -04:00
#include <stdio.h>
int vprintf(const char *restrict fmt, va_list ap)
{
return vfprintf(stdout, fmt, ap);
}