mighty

The mighty programming language, compiler and tools (WIP)
Log | Files | Refs

errors.c (139B)



#include <stdio.h>
#include <stdlib.h>
#include "errors.h"

void
panic(const char *msg) {
    fprintf(stderr, "%s\n", msg);
    exit(1);
}