From b6d265e347a53be00d84f23c236e424b3620ba10 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 13 Apr 1999 01:09:15 +0000 Subject: * src/od.c (MIN, MAX): Remove definitions. * src/sys2.h (MIN, MAX): Define here instead. --- src/od.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/od.c') diff --git a/src/od.c b/src/od.c index b6906f413..d72ffc11d 100644 --- a/src/od.c +++ b/src/od.c @@ -46,14 +46,6 @@ typedef double LONG_DOUBLE; # include #endif -#ifndef MAX -# define MAX(a, b) ((a) > (b) ? (a) : (b)) -#endif - -#ifndef MIN -# define MIN(a,b) (((a) < (b)) ? (a) : (b)) -#endif - /* The default number of input bytes per output line. */ #define DEFAULT_BYTES_PER_BLOCK 16 -- cgit v1.2.3-54-g00ecf