2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libf2c / libF77 / d_cnjg.c
blobbc46ae6959816f6cb8f95b3ac6d2f063d62b0bfa
1 #include "f2c.h"
3 void
4 d_cnjg (doublecomplex * r, doublecomplex * z)
6 doublereal zi = z->i;
7 r->r = z->r;
8 r->i = -zi;