shithub: scc

ref: 5bfd2bd34f677b9d84103bfa7429e898ef50298d
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();
}