mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-14 15:29:31 -06:00
9 lines
122 B
C
9 lines
122 B
C
#include "panic.h"
|
|
#include <stdio.h>
|
|
|
|
void __pgf_panic(char *msg) {
|
|
printf("%s\n",msg);
|
|
fflush(stdout);
|
|
exit(1);
|
|
}
|