summaryrefslogtreecommitdiff
path: root/code/fe310/bsp/gloss/sys_exit.c
blob: 1502b3ee4cd520c0013e3de4b7a56ff6413c3bcf (plain)
1
2
3
4
5
6
7
#include <stdlib.h>

__attribute__ ((noreturn)) void
_exit(int st) { while (1); }

int
atexit(void (*f)(void)) { return 0; }