12 lines
140 B
C
12 lines
140 B
C
|
#include "v4k.h"
|
||
|
|
||
|
void handle_crash() {
|
||
|
alert("crash!");
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
trap_install();
|
||
|
atexit(handle_crash);
|
||
|
app_crash();
|
||
|
return 0;
|
||
|
}
|