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