mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04: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);
|
|
}
|