diff options
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h new file mode 100644 index 0000000..4068691 --- /dev/null +++ b/src/util.h @@ -0,0 +1,6 @@ +#include <stdarg.h> +#include <stdio.h> +#include <stdlib.h> + +void die(const char *fmt, ...); +void *ecalloc(size_t nmemb, size_t size); |