From 32c82ac0a18004dac223729f6e3a77a197814086 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Mon, 8 Oct 2001 08:08:08 +0000 Subject: Don't define min/max. --- src/sound.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/sound.c') diff --git a/src/sound.c b/src/sound.c index e5c80059656..1c2d59e05b6 100644 --- a/src/sound.c +++ b/src/sound.c @@ -53,8 +53,6 @@ Boston, MA 02111-1307, USA. */ #define DEFAULT_SOUND_DEVICE "/dev/dsp" #endif -#define max(X, Y) ((X) > (Y) ? (X) : (Y)) -#define min(X, Y) ((X) < (Y) ? (X) : (Y)) #define abs(X) ((X) < 0 ? -(X) : (X)) /* Structure forward declarations. */ -- cgit v1.2.1