shithub: scc

ref: ea2d5f8dd91f10d96998aedcfbe22f21a9a73d1a
dir: /lib/c/src/assert.c/

View raw version
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>

void __assert(char *exp, char *file, long line)
{
	fprintf(stderr, "%s:%ld: assertion failed '%s'\n", file, line, exp);
	abort();
}