home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / libF77 / d_imag.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  72 b   |  8 lines

  1. #include "complex"
  2.  
  3. double d_imag(z)
  4. dcomplex *z;
  5. {
  6. return(z->dimag);
  7. }
  8.