aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdio/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/libc/stdio/printf.c')
-rw-r--r--src/userspace/libc/stdio/printf.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/userspace/libc/stdio/printf.c b/src/userspace/libc/stdio/printf.c
deleted file mode 100644
index 3951250..0000000
--- a/src/userspace/libc/stdio/printf.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <stdarg.h>
-#include <stdio.h>
-
-void printf(char *fmt, ...)
-{
- va_list args;
- va_start(args, fmt);
- vprintf(fmt, args);
- va_end(args);
-} \ No newline at end of file