diff options
Diffstat (limited to 'src/user/lib/stdlib.c')
-rw-r--r-- | src/user/lib/stdlib.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/user/lib/stdlib.c b/src/user/lib/stdlib.c index 6f276bd..068635b 100644 --- a/src/user/lib/stdlib.c +++ b/src/user/lib/stdlib.c @@ -10,3 +10,7 @@ int fork(void) { int close(handle_t h) { return _syscall_close(h); } + +_Noreturn void exit(int c) { + _syscall_exit(c); +} |