blob: 02ce78820334f8283edc2e71cff70b737c94189e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "common/error.h"
#include <stdlib.h>
#include <stdio.h>
/**
* File: error.c
*
* Author:
* Pacien TRAN-GIRARD
*/
void rage_quit(const char *msg) {
fprintf(stderr, "FATAL ERROR: %s\n", msg);
exit(1);
}
|