mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-29 16:14:54 -04:00
a320ae56ff
* 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
6 lines
165 B
C
6 lines
165 B
C
#include "fdlibm.h"
|
|
|
|
/* 8036C720-8036C740 367060 0020+00 0/0 6/6 0/0 .text atan2 */
|
|
double atan2(double x, double y) {
|
|
return __ieee754_atan2(x, y);
|
|
} |