mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-10 05:57:28 +00:00
12 lines
273 B
C
12 lines
273 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int _myassertbug(int line, char *file, char *err) {
|
|
fprintf(stderr, "Assertion failed: %s:%d: %s\n", file, line, err);
|
|
fprintf(stderr, "I HATE YOU!!!");
|
|
((void(*)())0)();
|
|
abort();
|
|
return 0;
|
|
}
|
|
|