quark

quark web server
git clone git://git.suckless.org/quark
Log | Files | Refs | LICENSE

commit 5b089b98a6cb5b108dc6f98ca4b160c59f009472
parent 2a83d925d7251acf40776c5eb545a98a9313ae7c
Author: sin <sin@2f30.org>
Date:   Mon,  1 Dec 2014 16:32:10 +0000

Undef MIN() because it screams on OpenBSD

Diffstat:
Mquark.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/quark.c b/quark.c @@ -25,6 +25,7 @@ char *argv0; #define LENGTH(x) (sizeof x / sizeof x[0]) #define MAXBUFLEN 1024 #define NPROCS 512 +#undef MIN #define MIN(x,y) ((x) < (y) ? (x) : (y)) #define HttpOk "200 OK"