support alternate glibc name pow10 for exp10

This commit is contained in:
Rich Felker
2012-05-01 00:07:37 -04:00
parent da5d89d42f
commit a917c03706
4 changed files with 12 additions and 0 deletions

View File

@ -1,5 +1,6 @@
#define _GNU_SOURCE
#include <math.h>
#include "libc.h"
long double exp10l(long double x)
{
@ -17,3 +18,5 @@ long double exp10l(long double x)
}
return powl(10.0, x);
}
weak_alias(exp10l, pow10l);