diff options
| author | Pixel <pixel@nobis-crew.org> | 2011-02-02 08:35:38 -0800 | 
|---|---|---|
| committer | Pixel <pixel@nobis-crew.org> | 2011-02-02 08:35:38 -0800 | 
| commit | 3ca9b28c5b04220565c206bd73d9ebb48b64db3b (patch) | |
| tree | 86ffbb085f2c255de44321c858780c77dc7583d8 /os/src/fprintf.c | |
| parent | 29dc401e5ba2c3f5676d426c4c1b10f1fc475fcd (diff) | |
Making a sample code for the 'romfs' thingy.
Diffstat (limited to 'os/src/fprintf.c')
| -rw-r--r-- | os/src/fprintf.c | 4 | 
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); | 
