mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-10-27 05:29:39 +01:00
12 lines
148 B
C
12 lines
148 B
C
#include "math.h"
|
|
|
|
double pow(double x, double y)
|
|
{
|
|
return __ieee754_pow(x, y);
|
|
}
|
|
|
|
|
|
double log(double x)
|
|
{
|
|
return __ieee754_log(x);
|
|
}
|