Initial revision
[official-gcc.git] / gcc / f / runtime / libF77 / r_cnjg.c
blobb6175eedfd76ee155f8ff58eb8b50f4a81b7d0aa
1 #include "f2c.h"
3 #ifdef KR_headers
4 VOID r_cnjg(resx, z) complex *resx, *z;
5 #else
6 VOID r_cnjg(complex *resx, complex *z)
7 #endif
9 complex res;
11 res.r = z->r;
12 res.i = - z->i;
14 resx->r = res.r;
15 resx->i = res.i;