aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/assert/assert.c
blob: efd9083bce84e61f16f87e9176f62d7e22fb0400 (plain) (blame)
1
2
3
4
5
6
7
8
#include <stdio.h>
#include <stdlib.h>

void _assert(const char *file, int line, const char *func, const char *exp)
{
	printf("%s:%d: %s: Assertion '%s' failed", file, line, func, exp);
	exit(1);
}