Remove building with NOCRYPTO option
[minix3.git] / lib / libm / complex / cargl.c
blob20b5a9169edbc12f860b04baefd0e8308fb60a4a
1 /* $NetBSD: cargl.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 cargl(long double complex z)
15 return atan2l(__imag__ z, __real__ z);