summaryrefslogtreecommitdiff
path: root/os/src/fprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/src/fprintf.c')
-rw-r--r--os/src/fprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/src/fprintf.c b/os/src/fprintf.c
index 10d34e7..a56ed33 100644
--- a/os/src/fprintf.c
+++ b/os/src/fprintf.c
@@ -1,12 +1,12 @@
#include <reent.h>
#include <stdio.h>
#include <stdarg.h>
-#include <osdebug.h>
+#include "osdebug.h"
int fprintf(FILE * file, const char * fmt, ...) {
int r;
va_list ap;
- DBGOUT("fprintf(%p, %p, ...)\r\n", file, fmt);
+// DBGOUT("fprintf(%p, %p, ...)\r\n", file, fmt);
va_start(ap, fmt);
r = _vfprintf_r(_impure_ptr, file, fmt, ap);
va_end(ap);