Update .gitignore

This commit is contained in:
Hektor Misplon
2020-05-07 19:29:15 +00:00
parent 7df62a07a7
commit 4cd919762e
24 changed files with 2 additions and 4212 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);