summaryrefslogtreecommitdiff
path: root/fw/fe310/bsp/gloss/sys_unlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'fw/fe310/bsp/gloss/sys_unlink.c')
-rw-r--r--fw/fe310/bsp/gloss/sys_unlink.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/fw/fe310/bsp/gloss/sys_unlink.c b/fw/fe310/bsp/gloss/sys_unlink.c
new file mode 100644
index 0000000..b369d20
--- /dev/null
+++ b/fw/fe310/bsp/gloss/sys_unlink.c
@@ -0,0 +1,8 @@
+#include <errno.h>
+
+int
+_unlink(const char *name)
+{
+ errno = ENOSYS;
+ return -1;
+}