summaryrefslogtreecommitdiff
path: root/os/src/fstat.c
diff options
context:
space:
mode:
Diffstat (limited to 'os/src/fstat.c')
-rw-r--r--os/src/fstat.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/os/src/fstat.c b/os/src/fstat.c
index b10194c..a7c251f 100644
--- a/os/src/fstat.c
+++ b/os/src/fstat.c
@@ -3,9 +3,11 @@
#include <string.h>
#include <errno.h>
#include "fio.h"
+#include "osdebug.h"
int _fstat_r(struct _reent * reent, int fd, struct stat * buf) {
off_t c;
+// DBGOUT("_fstat_r(%p, %i, %p)\r\n", reent, fd, buf);
memset(buf, 0, sizeof(struct stat));
if (!fio_is_open(fd)) {