diff options
Diffstat (limited to 'source4/lib/util')
-rw-r--r-- | source4/lib/util/util.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/source4/lib/util/util.h b/source4/lib/util/util.h index 8a2a9163d6..302bd06323 100644 --- a/source4/lib/util/util.h +++ b/source4/lib/util/util.h @@ -77,20 +77,6 @@ extern const char *panic_action; smb_panic("assert failed"); abort(); }} while (0) /** - * determine the lowest of two values - */ -#ifndef MIN -#define MIN(a,b) ((a)<(b)?(a):(b)) -#endif - -/** - * determine the highest of two values - */ -#ifndef MAX -#define MAX(a,b) ((a)>(b)?(a):(b)) -#endif - -/** * determine absolute value */ #ifndef ABS |