X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=blobdiff_plain;f=util.h;fp=util.h;h=033700cadd75205410e46a6f57aa9d33f0ab1511;hp=0000000000000000000000000000000000000000;hb=f21d46ea7def76221c4173f644eb2188ae9edbb1;hpb=c0ba635c50dc53f06e4fc96392415b3d19b25826 diff --git a/util.h b/util.h new file mode 100644 index 0000000..033700c --- /dev/null +++ b/util.h @@ -0,0 +1,6 @@ +/* See LICENSE file for copyright and license details. */ + +#define MAX(A, B) ((A) > (B) ? (A) : (B)) +#define MIN(A, B) ((A) < (B) ? (A) : (B)) + +void die(const char *errstr, ...);