Initial revision
[official-gcc.git] / gcc / f / runtime / libF77 / d_cnjg.c
blob1afa3bc4061e51673892ef467d1c4ba928dbc7c0
1 #include "f2c.h"
3 VOID
4 #ifdef KR_headers
5 d_cnjg(resx, z) doublecomplex *resx, *z;
6 #else
7 d_cnjg(doublecomplex *resx, doublecomplex *z)
8 #endif
10 doublecomplex res;
12 res.r = z->r;
13 res.i = - z->i;
15 resx->r = res.r;
16 resx->i = res.i;