summaryrefslogtreecommitdiff
path: root/code/fe310/gloss/sys_fstatat.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/fe310/gloss/sys_fstatat.c')
-rw-r--r--code/fe310/gloss/sys_fstatat.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/code/fe310/gloss/sys_fstatat.c b/code/fe310/gloss/sys_fstatat.c
deleted file mode 100644
index f2f43bd..0000000
--- a/code/fe310/gloss/sys_fstatat.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <errno.h>
-#include <sys/stat.h>
-
-int
-_fstatat(int dirfd, const char *file, struct stat *st, int flags)
-{
- errno = ENOSYS;
- return -1;
-}