Remove bloat

This commit is contained in:
Hektor Misplon
2020-05-07 19:30:24 +00:00
parent 4cd919762e
commit 653824cfbf
20 changed files with 4212 additions and 0 deletions

8
.suckless/dwm/util.h Normal file
View File

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