OSDN Git Service

set errno when fileno is called on a FILE with no underlying fd
[android-x86/external-musl-libc.git] / src / stdio / vprintf.c
1 #include <stdio.h>
2
3 int vprintf(const char *restrict fmt, va_list ap)
4 {
5         return vfprintf(stdout, fmt, ap);
6 }