/* $NetBSD: conjf.c,v 1.2 2010/09/15 16:11:29 christos Exp $ */ /* * Written by Matthias Drochner . * Public domain. */ #include #include "../src/math_private.h" float complex conjf(float complex z) { float_complex w = { .z = z }; IMAG_PART(w) = -IMAG_PART(w); return (w.z); }