vm, kernel, top: report memory usage of vm, kernel
[minix.git] / lib / libm / complex / cimag.c
blob5e98447c4f5ae395d7076b61b9354777aad54632
1 /* $NetBSD: cimag.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 double
12 cimag(double complex z)
14 double_complex w = { .z = z };
16 return (IMAG_PART(w));