vm, kernel, top: report memory usage of vm, kernel
[minix.git] / lib / libm / complex / cabs.c
blob5718bdd8f34d5c1dbb57283f4c7da4e7d40a45fb
1 /* $NetBSD: cabs.c,v 1.1 2007/08/20 16:01:30 drochner Exp $ */
3 /*
4 * Written by Matthias Drochner <drochner@NetBSD.org>.
5 * Public domain.
6 */
8 #include "../src/namespace.h"
9 #include <complex.h>
10 #include <math.h>
12 double
13 cabs(double complex z)
16 return hypot(__real__ z, __imag__ z);