summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/stdio/fprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/stdio/fprintf.c')
-rw-r--r--libc-top-half/musl/src/stdio/fprintf.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/stdio/fprintf.c b/libc-top-half/musl/src/stdio/fprintf.c
new file mode 100644
index 0000000..948743f
--- /dev/null
+++ b/libc-top-half/musl/src/stdio/fprintf.c
@@ -0,0 +1,12 @@
+#include <stdio.h>
+#include <stdarg.h>
+
+int fprintf(FILE *restrict f, const char *restrict fmt, ...)
+{
+ int ret;
+ va_list ap;
+ va_start(ap, fmt);
+ ret = vfprintf(f, fmt, ap);
+ va_end(ap);
+ return ret;
+}