repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git]
/
lib
/
ansi
/
assert.c
blob
3dab83b7e0d96fdce04ce8e9e74c90eb275f1123
1
/*
2
* assert.c - diagnostics
3
*/
4
/* $Header$ */
5
6
#include <assert.h>
7
#include <stdio.h>
8
#include <stdlib.h>
9
10
void
__bad_assertion
(
const char
*
mess
) {
11
12
fputs
(
mess
,
stderr
);
13
abort
();
14
}