Codebase list libf2c2 / debian/20130926-1 r_cnjg.c
debian/20130926-1

Tree @debian/20130926-1 (Download .tar.gz)

r_cnjg.c @debian/20130926-1raw · history · blame

#include "f2c.h"
#ifdef __cplusplus
extern "C" {
#endif

#ifdef KR_headers
VOID r_cnjg(r, z) complex *r, *z;
#else
VOID r_cnjg(complex *r, complex *z)
#endif
{
	real zi = z->i;
	r->r = z->r;
	r->i = -zi;
	}
#ifdef __cplusplus
}
#endif