diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-10-08 08:08:08 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-10-08 08:08:08 +0000 |
commit | 32c82ac0a18004dac223729f6e3a77a197814086 (patch) | |
tree | d3fd5ceb6486951b6d1a47e1b2696678e084b3b2 /src/sound.c | |
parent | 8a226de76604e91d83b7204443b0fed5f9b5789e (diff) | |
download | emacs-32c82ac0a18004dac223729f6e3a77a197814086.tar.gz |
Don't define min/max.
Diffstat (limited to 'src/sound.c')
-rw-r--r-- | src/sound.c | 2 |
1 files changed, 0 insertions, 2 deletions
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. */ |