diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2018-05-13 09:54:34 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2018-05-13 09:54:34 +0000 |
commit | 0c0288a2187070cd4fa48f821000d29a7be44f5a (patch) | |
tree | b9d99cab2e0796ca35445a36ce6d56163c4903ce /include/complex.h | |
parent | 2ebc8829279d5a9b8dea02139b109c6832422f4b (diff) |
Add implementations for clog(3), clogf(3), and clog(3).
PR: 216863
Submitted by: bde, Steven G. Kargl <sgk@troutmask.apl.washington.edu>
MFC after: 2 weeks
Notes
Notes:
svn path=/head/; revision=333577
Diffstat (limited to 'include/complex.h')
-rw-r--r-- | include/complex.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/complex.h b/include/complex.h index b502613c6acf..0f7228fad869 100644 --- a/include/complex.h +++ b/include/complex.h @@ -101,6 +101,10 @@ float complex cexpf(float complex); double cimag(double complex) __pure2; float cimagf(float complex) __pure2; long double cimagl(long double complex) __pure2; +double complex clog(double complex); +float complex clogf(float complex); +long double complex + clogl(long double complex); double complex conj(double complex) __pure2; float complex conjf(float complex) __pure2; long double complex |