source: trunk/libs/newlib/src/newlib/libm/complex/conjf.c @ 543

Last change on this file since 543 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 417 bytes
Line 
1/* $NetBSD: conjf.c,v 1.2 2010/09/15 16:11:29 christos Exp $ */
2
3/*
4 * Written by Matthias Drochner <drochner@NetBSD.org>.
5 * Public domain.
6 *
7 * imported and modified include for newlib 2010/10/03
8 * Marco Atzeri <marco_atzeri@yahoo.it>
9 */
10
11#include <complex.h>
12#include "../common/fdlibm.h"
13
14float complex
15conjf(float complex z)
16{
17        float_complex w = { .z = z };
18
19        IMAG_PART(w) = -IMAG_PART(w);
20
21        return (w.z);
22}
Note: See TracBrowser for help on using the repository browser.