Incorporate bsdmake into buildsystem and reorganize libs
This commit is contained in:
14
lib/libsys/assert.c
Normal file
14
lib/libsys/assert.c
Normal file
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* assert.c - diagnostics
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
#include <minix/config.h>
|
||||
#include <minix/const.h>
|
||||
#include <minix/sysutil.h>
|
||||
|
||||
void __bad_assertion(const char *mess) {
|
||||
printf("%s", mess);
|
||||
panic(NULL, NULL, NO_NUM);
|
||||
}
|
||||
Reference in New Issue
Block a user