From a917c03706d94564082d5ccff032a3e2c3dad537 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 1 May 2012 00:07:37 -0400 Subject: support alternate glibc name pow10 for exp10 --- include/math.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/math.h') diff --git a/include/math.h b/include/math.h index 65b1e915..d4359f32 100644 --- a/include/math.h +++ b/include/math.h @@ -391,6 +391,9 @@ long double ynl(int, long double); double exp10(double); float exp10f(float); long double exp10l(long double); +double pow10(double); +float pow10f(float); +long double pow10l(long double); #endif #ifdef __cplusplus -- cgit v1.2.1