diff options
Diffstat (limited to 'include/complex.h')
-rw-r--r-- | include/complex.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/include/complex.h b/include/complex.h index bb2ec972c02b..1fa4bd1eac2f 100644 --- a/include/complex.h +++ b/include/complex.h @@ -41,12 +41,18 @@ __BEGIN_DECLS -double cabs(double complex); -float cabsf(float complex); -double cimag(double complex); -float cimagf(float complex); -double creal(double complex); -float crealf(float complex); +double cabs(double complex); +float cabsf(float complex); +double cimag(double complex); +float cimagf(float complex); +long double cimagl(long double complex); +double complex conj(double complex); +float complex conjf(float complex); +long double complex + conjl(long double complex); +double creal(double complex); +float crealf(float complex); +long double creall(long double complex); __END_DECLS |