/*- * Copyright (c) 1980 The Regents of the University of California. * All rights reserved. * * %sccs.include.proprietary.c% */ #ifndef lint static char sccsid[] = "@(#)d_cnjg.c 5.4 (Berkeley) 04/12/91"; #endif /* not lint */ #include "complex" #ifdef tahoe #include #endif d_cnjg(r, z) dcomplex *r, *z; { r->dreal = z->dreal; #ifndef tahoe r->dimag = - z->dimag; #else tahoe r->dimag = z->dimag; if (z->dimag == 0.0) return; else *(unsigned long *)&(z->dimag) ^= SIGN_BIT; #endif tahoe }