Fix problem with duplicate definition of PI.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Sun, 19 Feb 1989 18:09:08 +0000 (18:09 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Sun, 19 Feb 1989 18:09:08 +0000 (18:09 +0000)
v7/src/microcode/fft.c

index 8a26a482a182318857afad219085c4adbdacb23a..21e4b8d5c219f7696b66061802986cf3f8e4aa0b 100644 (file)
@@ -30,7 +30,7 @@ Technology nor of any adaptation thereof in any advertising,
 promotional, or sales literature without prior written consent from
 MIT in each case. */
 
-/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/fft.c,v 9.24 1988/08/15 20:46:29 cph Exp $ */
+/* $Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/fft.c,v 9.25 1989/02/19 18:09:08 jinx Exp $ */
 
 /* Fourier Transforms (pas)
    1. DFT (FFT),
@@ -52,6 +52,10 @@ MIT in each case. */
    Note: Seibert's Forward DFT is Oppenheim's Backward DFT.
    */
 
+#ifdef PI
+#undef PI
+#endif
+
 #define PI    3.141592653589793238462643
 #define TWOPI 6.283185307179586476925287
 /* Abramowitz and Stegun */