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