summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/stdio/dprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/stdio/dprintf.c')
-rw-r--r--libc-top-half/musl/src/stdio/dprintf.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/stdio/dprintf.c b/libc-top-half/musl/src/stdio/dprintf.c
new file mode 100644
index 0000000..93082ee
--- /dev/null
+++ b/libc-top-half/musl/src/stdio/dprintf.c
@@ -0,0 +1,12 @@
+#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;
+}