this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Implement `__exp10` and `__exp10f`

+11
+1
src/libm/CMakeLists.txt
··· 16 16 set(libm_sources 17 17 Source/abs.c 18 18 Source/sincos.c 19 + Source/exp10.c 19 20 #Source/nan.c 20 21 #Source/nanl.c 21 22 #Source/version_info.c
+10
src/libm/Source/exp10.c
··· 1 + extern double pow(double b, double p); 2 + extern float powf(float b, float p); 3 + 4 + double __exp10(double x) { 5 + return pow(10, x); 6 + }; 7 + 8 + float __exp10f(float x) { 9 + return pow(10, x); 10 + };