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