From 3ca9b28c5b04220565c206bd73d9ebb48b64db3b Mon Sep 17 00:00:00 2001 From: Pixel Date: Wed, 2 Feb 2011 08:35:38 -0800 Subject: Making a sample code for the 'romfs' thingy. --- os/src/fprintf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'os/src/fprintf.c') 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 #include #include -#include +#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); -- cgit v1.2.3