source:
trunk/minix/lib/syslib/assert.c@
19
Last change on this file since 19 was 9, checked in by , 13 years ago | |
---|---|
File size: 244 bytes |
Line | |
---|---|
1 | /* |
2 | * assert.c - diagnostics |
3 | */ |
4 | |
5 | #include <assert.h> |
6 | #include <stdio.h> |
7 | #include <minix/config.h> |
8 | #include <minix/const.h> |
9 | #include <minix/sysutil.h> |
10 | |
11 | void __bad_assertion(const char *mess) { |
12 | printf("%s", mess); |
13 | panic(NULL, NULL, NO_NUM); |
14 | } |
Note:
See TracBrowser
for help on using the repository browser.