X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fgp2x%2Fcode940%2FuClibc%2Fwrappers.c;fp=platform%2Fgp2x%2Fcode940%2FuClibc%2Fwrappers.c;h=cc4e269edc81109937b174a7114a6b72c3bff044;hb=42c7b14797fad5ad8adc822e8d0cebf326eb620b;hp=0000000000000000000000000000000000000000;hpb=b837b69b3fcff1737431c8be1c78d1cfd64003a6;p=picodrive.git diff --git a/platform/gp2x/code940/uClibc/wrappers.c b/platform/gp2x/code940/uClibc/wrappers.c new file mode 100644 index 0000000..cc4e269 --- /dev/null +++ b/platform/gp2x/code940/uClibc/wrappers.c @@ -0,0 +1,12 @@ +#include "math.h" + +double pow(double x, double y) +{ + return __ieee754_pow(x, y); +} + + +double log(double x) +{ + return __ieee754_log(x); +}