scl/src/include/util.c
2024-09-28 09:31:23 -04:00

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