diff options
author | das <das@FreeBSD.org> | 2007-12-12 23:43:51 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2007-12-12 23:43:51 +0000 |
commit | b9a043d44cc426b5fe354db2cf705e59e5b3a867 (patch) | |
tree | 79fcbb5dd5acb03b187bc82dfc2af59cd0cc2e55 /include | |
parent | facc60167bbbf9e19b3968e7e98afe0f6af4231a (diff) | |
download | FreeBSD-src-b9a043d44cc426b5fe354db2cf705e59e5b3a867.zip FreeBSD-src-b9a043d44cc426b5fe354db2cf705e59e5b3a867.tar.gz |
Implement carg(3) and cargf(3).
Rotting in an old src tree since: March 2005
Diffstat (limited to 'include')
-rw-r--r-- | include/complex.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/complex.h b/include/complex.h index 502a178..5627f61 100644 --- a/include/complex.h +++ b/include/complex.h @@ -45,6 +45,8 @@ __BEGIN_DECLS double cabs(double complex); float cabsf(float complex); +double carg(double complex); +float cargf(float complex); double cimag(double complex); float cimagf(float complex); long double cimagl(long double complex); |