vm, kernel, top: report memory usage of vm, kernel
[minix.git] / lib / libm / complex / crealf.c
blob5499c8de926a7375d3448a00237826a8f4a938ac
1 /* $NetBSD: crealf.c,v 1.2 2010/09/15 16:11:29 christos Exp $ */
3 /*
4 * Written by Matthias Drochner <drochner@NetBSD.org>.
5 * Public domain.
6 */
8 #include <complex.h>
9 #include "../src/math_private.h"
11 float
12 crealf(float complex z)
14 float_complex w = { .z = z };
16 return (REAL_PART(w));