aboutsummaryrefslogtreecommitdiff
path: root/src/helpers.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/helpers.c')
-rw-r--r--src/helpers.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/helpers.c b/src/helpers.c
deleted file mode 100644
index 8485dc6..0000000
--- a/src/helpers.c
+++ /dev/null
@@ -1,34 +0,0 @@
-#include <helpers.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-void die_lz(int code, const char *msg) {
- if (code < 0) {
- die(msg);
- }
-}
-
-void die(const char *msg) {
- fprintf(stderr, "panic: ");
- perror(msg);
- exit(EXIT_FAILURE);
-}
-
-void *safe_calloc(unsigned int i, size_t size) {
- void *x = calloc(i, size);
- if (x == NULL) {
- die("abort: calloc()");
- }
- return x;
-}
-
-void *safe_realloc(void *x, size_t size) {
- void *p = realloc(x, size);
- if (x == NULL) {
- die("abort: realloc()");
- }
- return p;
-}
-
-void alloc_zero(void *ptr, size_t size) { memset(ptr, 0, size); }