aboutsummaryrefslogtreecommitdiff
path: root/lib/stdio/fprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stdio/fprintf.c')
-rw-r--r--lib/stdio/fprintf.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/stdio/fprintf.c b/lib/stdio/fprintf.c
deleted file mode 100644
index 9a96dc6..0000000
--- a/lib/stdio/fprintf.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <stdio.h>
-
-int
-fprintf(FILE *restrict stream, const char *restrict format, ...)
-{
- va_list ap;
- va_start(ap, format);
- int c = vfprintf(stream, format, ap);
- va_end(ap);
- return c;
-}