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.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/newlib/libc/syscalls/sysfstat.c b/newlib/libc/syscalls/sysfstat.c
deleted file mode 100644
index 864c0ab9c..000000000
--- a/newlib/libc/syscalls/sysfstat.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* connector for fstat */
-
-#include <reent.h>
-#include <unistd.h>
-
-int
-_DEFUN (fstat, (fd, pstat),
- int fd _AND
- struct stat *pstat)
-{
- return _fstat_r (_REENT, fd, pstat);
-}