mirror of
https://github.com/zeldaret/tp
synced 2026-06-02 02:00:30 -04:00
589cc12296
* wip * bunch of MSL_C files thanks to pikmin2 decomp for their work * format / asm * progress * fix * fix remove-asm to work with C files * init / start
7 lines
162 B
C
7 lines
162 B
C
#include "fdlibm.h"
|
|
|
|
/* 8036C780-8036C7A0 3670C0 0020+00 0/0 3/3 24/24 .text pow */
|
|
double pow(double x, double y) {
|
|
return __ieee754_pow(x, y);
|
|
}
|