repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libm
/
complex
/
cargl.c
blob
9560cce6e72a0cb2fb30bf877a309b3e0ea8184e
1
/* $NetBSD: cargl.c,v 1.1 2014/10/10 00:48:18 christos Exp $ */
2
3
/*
4
* Public domain.
5
*/
6
7
#include <complex.h>
8
#include <math.h>
9
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
)
14
{
15
return
carg
(
z
);
16
}
17
#endif