summaryrefslogtreecommitdiff
path: root/fw/fe310/bsp/gloss/sys_exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'fw/fe310/bsp/gloss/sys_exit.c')
-rw-r--r--fw/fe310/bsp/gloss/sys_exit.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/fw/fe310/bsp/gloss/sys_exit.c b/fw/fe310/bsp/gloss/sys_exit.c
new file mode 100644
index 0000000..1502b3e
--- /dev/null
+++ b/fw/fe310/bsp/gloss/sys_exit.c
@@ -0,0 +1,7 @@
+#include <stdlib.h>
+
+__attribute__ ((noreturn)) void
+_exit(int st) { while (1); }
+
+int
+atexit(void (*f)(void)) { return 0; }