summaryrefslogtreecommitdiff
path: root/os/src/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/src/printf.c')
-rw-r--r--os/src/printf.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/os/src/printf.c b/os/src/printf.c
deleted file mode 100644
index 80b6b94..0000000
--- a/os/src/printf.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <reent.h>
-#include <stdio.h>
-#include <stdarg.h>
-#include <osdebug.h>
-
-int printf(const char * fmt, ...) {
- int r;
- va_list ap;
-// DBGOUT("printf(\"%p\", ...)\r\n", fmt);
- va_start(ap, fmt);
- r = _vprintf_r(_impure_ptr, fmt, ap);
- va_end(ap);
- return r;
-}