| 
 |  | 
   #include <complex.h>
   class complex {
   
   public:
               
   	friend double	abs(complex) throw();
   	friend double	arg(complex) throw();
   	friend complex	conj(complex) throw();
   	friend double	imag(complex) throw();
   	friend double	norm(complex) throw();
   	friend complex	polar(double, double = 0);
   	friend double	real(complex) throw();
   };
 to
 to  .
.