summaryrefslogtreecommitdiffstats
path: root/newlib/libc/include/complex.h
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/include/complex.h')
-rw-r--r--newlib/libc/include/complex.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/newlib/libc/include/complex.h b/newlib/libc/include/complex.h
index 969b20e5f..c3ae3cff8 100644
--- a/newlib/libc/include/complex.h
+++ b/newlib/libc/include/complex.h
@@ -83,6 +83,7 @@ float complex clogf(float complex);
float cabsf(float complex) __RENAME(__c99_cabsf);
#endif
*/
+long double cabsl(long double complex) ;
double cabs(double complex) ;
float cabsf(float complex) ;
@@ -102,7 +103,7 @@ float cargf(float complex);
/* 7.3.9.2 The cimag functions */
double cimag(double complex);
float cimagf(float complex);
-/*long double cimagl(long double complex); */
+long double cimagl(long double complex);
/* 7.3.9.3 The conj functions */
double complex conj(double complex);
@@ -117,7 +118,7 @@ float complex cprojf(float complex);
/* 7.3.9.5 The creal functions */
double creal(double complex);
float crealf(float complex);
-/*long double creall(long double complex); */
+long double creall(long double complex);
__END_DECLS