From e2e3a8e007ac2a9533f4205622a6e17d57845fcc Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 24 Apr 2006 14:09:07 +0000 Subject: r15200: Move MIN/MAX macros to libreplace as some systems have them in sys/param.h (This used to be commit 3f0396aade82a92a375275059baf8500de1b23f0) --- source4/lib/util/util.h | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'source4/lib/util/util.h') 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 @@ -76,20 +76,6 @@ extern const char *panic_action; DEBUG(0,("PANIC: assert failed at %s(%d)\n", __FILE__, __LINE__)); \ 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 */ -- cgit