home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / utils / f2c / f77lib / r_imag.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-09  |  122 b   |  11 lines

  1. #include "f2c.h"
  2.  
  3. #ifdef KR_headers
  4. double r_imag(z) complex *z;
  5. #else
  6. double r_imag(complex *z)
  7. #endif
  8. {
  9. return(z->i);
  10. }
  11.