From: Martin Mares Date: Wed, 7 Mar 2001 13:35:35 +0000 (+0000) Subject: Removed old incarnation of CLAMP. X-Git-Tag: holmes-import~1517 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=9b2c21a1113a01435d7dadb3ff0ca2d8fb4ee1e6;p=libucw.git Removed old incarnation of CLAMP. --- diff --git a/lib/index.h b/lib/index.h index 8eb36eb1..ebd28f3a 100644 --- a/lib/index.h +++ b/lib/index.h @@ -4,8 +4,6 @@ * (c) 2001 Martin Mares */ -#define CLAMP(x,min,max) ({ int _t=x; (_t < min) ? min : (_t > max) ? max : _t; }) - /* Words */ #define MAX_WORD_LEN 64