aboutsummaryrefslogtreecommitdiff
path: root/include/helpers.h
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2024-12-28 16:47:43 -0800
committerPreston Pan <ret2pop@gmail.com>2024-12-28 16:47:43 -0800
commit1fd608288ee47c2c560817f12f14b21069fed2f6 (patch)
treee6460b92dba5bb0d089c8c2a4e794e3504098359 /include/helpers.h
parent63f11aaec8d21844a07fd27003a992c102a3a297 (diff)
makefile and directory structure change completely to build client and server
Diffstat (limited to 'include/helpers.h')
-rw-r--r--include/helpers.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/helpers.h b/include/helpers.h
deleted file mode 100644
index 276b590..0000000
--- a/include/helpers.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef HELPERS_H
-#define HELPERS_H
-
-#include <stdlib.h>
-
-void die_lz(int code, const char *msg);
-
-void die(const char *msg);
-
-void *safe_calloc(unsigned int i, size_t size);
-
-void *safe_realloc(void *x, size_t size);
-
-void alloc_zero(void *ptr, size_t size);
-#endif