Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libm / complex / cargl.c
blob9560cce6e72a0cb2fb30bf877a309b3e0ea8184e
1 /* $NetBSD: cargl.c,v 1.1 2014/10/10 00:48:18 christos Exp $ */
3 /*
4 * Public domain.
5 */
7 #include <complex.h>
8 #include <math.h>
10 /* On platforms where long double is as wide as double. */
11 #ifdef _LDBL_EQ_DBL
12 long double
13 cargl(long double complex z)
15 return carg (z);
17 #endif