Added an #undef to make win32 compile cleaner.
authorjon <jon@xiph.org>
Sat, 27 May 2000 17:28:26 +0000 (17:28 +0000)
committerjon <jon@xiph.org>
Sat, 27 May 2000 17:28:26 +0000 (17:28 +0000)
svn path=/trunk/vorbis/; revision=413

lib/scales.h

index 3a50701..72f94b3 100644 (file)
@@ -12,7 +12,7 @@
  ********************************************************************
 
  function: linear scale -> dB, Bark and Mel scales
- last mod: $Id: scales.h,v 1.2 2000/05/08 20:49:49 xiphmont Exp $
+ last mod: $Id: scales.h,v 1.3 2000/05/27 17:28:26 jon Exp $
 
  ********************************************************************/
 
@@ -21,6 +21,9 @@
 
 #include <math.h>
 
+#undef min   // These get defined in a win32 header file... eeyuch.
+#undef max
+
 #define min(x,y)  ((x)>(y)?(y):(x))
 #define max(x,y)  ((x)<(y)?(y):(x))