about summary refs log tree commit diff
path: root/src/pOS/arch/x86/libc/assert.cpp
blob: 851a7142d9838abcf5288f3fdf96786f3f69da02 (plain) (blame)
1
2
3
4
5
6
7
#include <assert.h>

void _assert(const char* expr, const char* file, int line)
{
    printf("Assertion failed! (%s) - %s:%d\n", expr, file ,line);
    /* TODO: Implement exit */
}