diff options
Diffstat (limited to 'code/fe310/bsp/gloss/sys_fstatat.c')
-rw-r--r-- | code/fe310/bsp/gloss/sys_fstatat.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/code/fe310/bsp/gloss/sys_fstatat.c b/code/fe310/bsp/gloss/sys_fstatat.c new file mode 100644 index 0000000..f2f43bd --- /dev/null +++ b/code/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; +} |