musl-tcc/src/stdio/vprintf.c

7 lines
109 B
C
Raw Permalink Normal View History

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