summaryrefslogtreecommitdiff
path: root/src/assert/assert.c
blob: 65beff3679344449adf23133bf8fd1fc48d9213a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdlib.h>
#include "stdlib/_stdlib.h"

void assert()
{
	__stdlib.constraint_handler("Undefined Behavior: The assert() macro has been suppressed to access an actual function", NULL, 0);
	abort();
}

/*
SIGNAL_SAFE(0)
STDC(0)
*/