1 2 3 4 5 6 7 8
#include "panic.h" #include <stdio.h> void __pgf_panic(char *msg) { printf("%s\n",msg); fflush(stdout); exit(1); }