summaryrefslogtreecommitdiffstats
path: root/newlib/libc/syscalls/sysfstat.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/syscalls/sysfstat.c')
-rw-r--r--newlib/libc/syscalls/sysfstat.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/newlib/libc/syscalls/sysfstat.c b/newlib/libc/syscalls/sysfstat.c
deleted file mode 100644
index 7ce2c9dfe..000000000
--- a/newlib/libc/syscalls/sysfstat.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* connector for fstat */
-
-#include <reent.h>
-#include <sys/stat.h>
-#include <unistd.h>
-
-int
-_DEFUN (fstat, (fd, pstat),
- int fd _AND
- struct stat *pstat)
-{
- return _fstat_r (_REENT, fd, pstat);
-}