Remove building with NOCRYPTO option
[minix3.git] / lib / libm / complex / cabsl.c
bloba627c29ace8a17889524b465cb4331e11c8c9f45
1 /* $NetBSD: cabsl.c,v 1.1 2014/10/10 00:48:18 christos Exp $ */
3 /*
4 * Public domain.
5 */
7 #include "../src/namespace.h"
8 #include <complex.h>
9 #include <math.h>
11 long double
12 cabsl(long double complex z)
15 return hypotl(__real__ z, __imag__ z);