blob: 7fd747e72f08731d81a579ac798d38c399b2e60a (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <assert.h>
#include <stdlib.h>
// https://pubs.opengroup.org/onlinepubs/9699919799/functions/abort.html
void abort(void) {
printf("aborting!!!!\n");
assert(0);
for (;;)
;
}
|