musl-tcc/src/stdio/dprintf.c

13 lines
194 B
C

#include <stdio.h>
#include <stdarg.h>
int dprintf(int fd, const char *restrict fmt, ...)
{
int ret;
va_list ap;
va_start(ap, fmt);
ret = vdprintf(fd, fmt, ap);
va_end(ap);
return ret;
}