rewrite popen to use posix_spawn instead of fragile vfork hacks
[musl] / src / stdio / dprintf.c
1 #include <stdio.h>
2 #include <stdarg.h>
3
4 int dprintf(int fd, const char *restrict fmt, ...)
5 {
6         int ret;
7         va_list ap;
8         va_start(ap, fmt);
9         ret = vdprintf(fd, fmt, ap);
10         va_end(ap);
11         return ret;
12 }