summaryrefslogtreecommitdiff
path: root/os/src/fclose.c
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-02-02 08:35:38 -0800
committerPixel <pixel@nobis-crew.org>2011-02-02 08:35:38 -0800
commit3ca9b28c5b04220565c206bd73d9ebb48b64db3b (patch)
tree86ffbb085f2c255de44321c858780c77dc7583d8 /os/src/fclose.c
parent29dc401e5ba2c3f5676d426c4c1b10f1fc475fcd (diff)
Making a sample code for the 'romfs' thingy.
Diffstat (limited to 'os/src/fclose.c')
-rw-r--r--os/src/fclose.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/os/src/fclose.c b/os/src/fclose.c
index 76cf51d..4c4c3fc 100644
--- a/os/src/fclose.c
+++ b/os/src/fclose.c
@@ -1,7 +1,8 @@
#include <stdio.h>
#include <reent.h>
-#include <osdebug.h>
+#include "osdebug.h"
int fclose(FILE * fp) {
+// DBGOUT("fclose(%p)\r\n", fp);
return _fclose_r(_impure_ptr, fp);
}