repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
secondary cache feature in vm.
[minix.git]
/
lib
/
libsys
/
assert.c
blob
fa2da1fd915f4ec8367e813c66b4e035f1629726
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
panic
(
"%s"
,
mess
);
13
}