blob: 93082ee79cf9df348e40c3ba5b6ecf159b637beb [file] [log] [blame]
#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;
}