at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git] / lib / ansi / assert.c
blob3dab83b7e0d96fdce04ce8e9e74c90eb275f1123
1 /*
2 * assert.c - diagnostics
3 */
4 /* $Header$ */
6 #include <assert.h>
7 #include <stdio.h>
8 #include <stdlib.h>
10 void __bad_assertion(const char *mess) {
12 fputs(mess, stderr);
13 abort();