From c8a010ba85e8325fdbf7468ef49744ff1f09f213 Mon Sep 17 00:00:00 2001 From: Pixel Date: Fri, 28 Jan 2011 00:35:56 -0800 Subject: Adding a few more 'syscalls' to our libc. --- os/src/fstat.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 os/src/fstat.c (limited to 'os/src/fstat.c') diff --git a/os/src/fstat.c b/os/src/fstat.c new file mode 100644 index 0000000..a756206 --- /dev/null +++ b/os/src/fstat.c @@ -0,0 +1,8 @@ +#include +#include +#include "osdebug.h" + +int _fstat_r(struct _reent * ptr, int fildes, struct stat * buf) { + DBGOUT("_fstat_r(%p, %d, %p)\r\n", ptr, fildes, buf); + return 0; +} -- cgit v1.2.3