diff options
Diffstat (limited to 'include/unistd.h')
-rw-r--r-- | include/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unistd.h b/include/unistd.h index 6402c27..fb4992d 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -135,7 +135,7 @@ void* sbrk(ptrdiff_t) /* TODO implement sbrk */ /* TODO implement exit-functions */ -void _exit(int) __noreturn; +__noreturn void _exit(int); /* TODO implement I/O */ |