diff options
| author | Rich Felker <dalias@aerifal.cx> | 2012-05-01 00:07:37 -0400 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2012-05-01 00:07:37 -0400 | 
| commit | a917c03706d94564082d5ccff032a3e2c3dad537 (patch) | |
| tree | 8b22f4853a063cc1413665f752eff41cd8f60135 /include | |
| parent | da5d89d42fb47c648fb83645e5e4a55bae907032 (diff) | |
| download | musl-a917c03706d94564082d5ccff032a3e2c3dad537.tar.gz | |
support alternate glibc name pow10 for exp10
Diffstat (limited to 'include')
| -rw-r--r-- | include/math.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| 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 | 
