You've already forked ultrasm64-2
mirror of
https://github.com/HackerN64/ultrasm64-2.git
synced 2026-01-21 10:38:08 -08:00
subrepo: subdir: "lib/n64-libc" merged: "70270d60" upstream: origin: "https://gitlab.com/mpharoah/n64-libc" branch: "main" commit: "70270d60" git-subrepo: version: "0.4.9" origin: "https://github.com/ingydotnet/git-subrepo" commit: "4f60dd7"
10 lines
275 B
C
10 lines
275 B
C
#include "n64-assert.h"
|
|
|
|
#include "n64-stdlib.h"
|
|
#include "n64-stdio.h"
|
|
|
|
void __n64_assert_fail( const char *assertion, const char *file, unsigned int line, const char *fcn ) {
|
|
n64_printf( "%s:%u: %s: Assertion `%s' failed.\n", file, line, fcn, assertion );
|
|
n64_abort();
|
|
}
|