diff options
Diffstat (limited to 'src/user')
-rw-r--r-- | src/user/lib/unistd.c (renamed from src/user/lib/stdlib.c) | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/user/lib/stdlib.c b/src/user/lib/unistd.c index 43405d7..9d0c479 100644 --- a/src/user/lib/stdlib.c +++ b/src/user/lib/unistd.c @@ -48,6 +48,7 @@ int execv(const char *path, char *const argv[]) { return -1; } +// stdlib.h _Noreturn void abort(void) { _syscall_exit(1); } |