home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / fortran / libf2c-0.000 / libf2c-0 / libf2c / libF77 / r_cnjg.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-20  |  151 b   |  12 lines

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