blob: 5499c8de926a7375d3448a00237826a8f4a938ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* $NetBSD: crealf.c,v 1.2 2010/09/15 16:11:29 christos Exp $ */
/*
* Written by Matthias Drochner <drochner@NetBSD.org>.
* Public domain.
*/
#include <complex.h>
#include "../src/math_private.h"
float
crealf(float complex z)
{
float_complex w = { .z = z };
return (REAL_PART(w));
}
|