summaryrefslogtreecommitdiff
path: root/code/fe310/bsp/gloss/sys_utime.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/fe310/bsp/gloss/sys_utime.c')
-rw-r--r--code/fe310/bsp/gloss/sys_utime.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/code/fe310/bsp/gloss/sys_utime.c b/code/fe310/bsp/gloss/sys_utime.c
new file mode 100644
index 0000000..33d557a
--- /dev/null
+++ b/code/fe310/bsp/gloss/sys_utime.c
@@ -0,0 +1,9 @@
+#include <errno.h>
+struct utimbuf;
+
+int
+_utime(const char *path, const struct utimbuf *times)
+{
+ errno = ENOSYS;
+ return -1;
+}