mirror of
https://github.com/fluencelabs/musl
synced 2025-06-30 15:11:55 +00:00
support alternate glibc name pow10 for exp10
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user