Changes in uspace/lib/libc/include/stdlib.h [e515b21a:db24058] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/stdlib.h
re515b21a rdb24058 38 38 #include <unistd.h> 39 39 #include <malloc.h> 40 #include <stacktrace.h>41 40 42 #define abort() \ 43 do { \ 44 stacktrace_print(); \ 45 _exit(1); \ 46 } while (0) 47 41 #define abort() _exit(1) 48 42 #define exit(status) _exit((status)) 49 43
Note:
See TracChangeset
for help on using the changeset viewer.