mirror of
https://github.com/zeldaret/tp
synced 2026-05-29 08:43:05 -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
150 B
C
7 lines
150 B
C
#include "fdlibm.h"
|
|
|
|
/* 8036CA54-8036CA74 367394 0020+00 0/0 8/8 1/1 .text sqrt */
|
|
double sqrt(double x) {
|
|
return __ieee754_sqrt(x);
|
|
}
|