summaryrefslogtreecommitdiff
path: root/src/runtime/c/pgf/panic.c
blob: 2a8553a83df1b558d557f46fb49172b9d502bdb5 (plain)
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);
}