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/fopen.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'os/src/fopen.c') diff --git a/os/src/fopen.c b/os/src/fopen.c index e8b4246..22ac269 100644 --- a/os/src/fopen.c +++ b/os/src/fopen.c @@ -1,6 +1,8 @@ #include #include +#include "osdebug.h" FILE * fopen(const char * path, const char * mode) { +// DBGOUT("fopen(\"%s\", \"%s\")\r\n", path, mode); return _fopen_r(_impure_ptr, path, mode); } -- cgit v1.2.3