fxlibc/src/stdio/dprintf.c

13 lines
186 B
C
Raw Normal View History

2020-09-17 19:27:01 +02:00
#include <stdio.h>
int dprintf(int fd, const char *restrict format, ...)
{
va_list ap;
int ret;
va_start(ap, format);
ret = vdprintf(fd, format, ap);
va_end(ap);
return (ret);
}