Remove bloat

This commit is contained in:
Hektor Misplon
2020-05-07 00:22:35 +00:00
parent daceb8bcb1
commit f1b36ac00a
107 changed files with 0 additions and 22833 deletions

View File

@@ -1,8 +0,0 @@
/* 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);