home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / f2c-93.04.28-src.tgz / tar.out / fsf / f2c / libF77 / d_cnjg.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  165b  |  13 lines

  1. #include "f2c.h"
  2.  
  3.  VOID
  4. #ifdef KR_headers
  5. d_cnjg(r, z) doublecomplex *r, *z;
  6. #else
  7. d_cnjg(doublecomplex *r, doublecomplex *z)
  8. #endif
  9. {
  10. r->r = z->r;
  11. r->i = - z->i;
  12. }
  13.