Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cimagf.c « complex « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 20077ee16c69f1c62589d34f49b5c34ced0b3f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* $NetBSD: cimagf.c,v 1.2 2010/09/15 16:11:29 christos Exp $ */

/*
 * Written by Matthias Drochner <drochner@NetBSD.org>.
 * Public domain.
 *
 * imported and modified include for newlib 2010/10/03 
 * Marco Atzeri <marco_atzeri@yahoo.it>
 */

#include <complex.h>
#include "../common/fdlibm.h"

float
cimagf(float complex z)
{
	float_complex w = { .z = z };

	return (IMAG_PART(w));
}