aboutsummaryrefslogtreecommitdiffstats
path: root/bkp/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'bkp/util.h')
-rw-r--r--bkp/util.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/bkp/util.h b/bkp/util.h
deleted file mode 100644
index b34e3fd..0000000
--- a/bkp/util.h
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
-// . . .
-// | | | .
-// ,-. ,-. |-. ,-. . ,-. | ,_, ,-. ,-. |-. ,-,-. . |- ,_,
-// | | ,-| | | | | |-' | / `-. | | | | | | | | /
-// `-| `-^ ^-' ' ' `-' `' '"' `-' `-' ' ' ' ' ' ' `' '"'
-// ,|
-// `'
-// GITHUB:https://github.com/gabrielzschmitz
-// INSTAGRAM:https://www.instagram.com/gabrielz.schmitz/
-// DOTFILES:https://github.com/gabrielzschmitz/dotfiles/
-*/
-/* See LICENSE file for copyright and license details. */
-
-#define MAX(A, B) ((A) > (B) ? (A) : (B))
-#define MIN(A, B) ((A) < (B) ? (A) : (B))
-#define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))
-
-void die(const char *fmt, ...);
-void *ecalloc(size_t nmemb, size_t size);