home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fs.zip / octave / f2c / libf77 / d_cnjg.c < prev    next >
C/C++ Source or Header  |  2000-01-15  |  177b  |  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.