From 88b8906c9a076011e2c82aa95a38eccb9754eb9b Mon Sep 17 00:00:00 2001 From: pnenzi Date: Tue, 12 Aug 2003 11:45:39 +0000 Subject: [PATCH] Removed multiple definition of CMPLX_MUL macro. --- src/include/complex.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/include/complex.h b/src/include/complex.h index b923c487b..3e7ae1d6b 100644 --- a/src/include/complex.h +++ b/src/include/complex.h @@ -401,14 +401,6 @@ typedef struct (to).Imag *= (sclr); \ } -/* Macro function that multiplies two complex numbers. */ -#define CMPLX_MULT(to,from_a,from_b) \ -{ (to).Real = (from_a).Real * (from_b).Real - \ - (from_a).Imag * (from_b).Imag; \ - (to).Imag = (from_a).Real * (from_b).Imag + \ - (from_a).Imag * (from_b).Real; \ -} - /* Macro function that implements to *= from for complex numbers. */ #define CMPLX_MULT_ASSIGN(to,from) \ { RealNumber to_real_ = (to).Real; \