13 lines
195 B
C
13 lines
195 B
C
#ifndef UTIL_H
|
|
#define UTIL_H
|
|
|
|
// Utilies.
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
// Exit with an error. Returns int for ease of use, but should be treated as void.
|
|
int die(char* msg);
|
|
|
|
#endif
|