added dwm
This commit is contained in:
parent
f605203031
commit
4ffc02a065
17 changed files with 3246 additions and 2 deletions
8
hosts/vali/mars/dwm/dwm-6.5/util.h
Normal file
8
hosts/vali/mars/dwm/dwm-6.5/util.h
Normal 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);
|
Loading…
Add table
Add a link
Reference in a new issue