home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / sharew / f_2_c / libf77 / d_cnjg.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-10  |  93 b   |  9 lines

  1. #include "f2c.h"
  2.  
  3. d_cnjg(r, z)
  4. doublecomplex *r, *z;
  5. {
  6. r->r = z->r;
  7. r->i = - z->i;
  8. }
  9.