summaryrefslogtreecommitdiff
path: root/src/libc/stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libc/stdlib.h')
-rw-r--r--src/libc/stdlib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libc/stdlib.h b/src/libc/stdlib.h
index 9ff28a3..5b2521f 100644
--- a/src/libc/stdlib.h
+++ b/src/libc/stdlib.h
@@ -7,7 +7,8 @@
char *itoa( int v, char *s, int base );
-void abort( void );
+void __attribute__( (noreturn ) ) exit( int status );
+void __attribute__( (noreturn ) ) abort( void );
void *malloc( size_t size );
void free( void *p );