mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 15:01:47 -04:00
3d050f2861
* Decompile a bunch of small files * Rename dacrate to dacRate * Run format.sh * Minor fixes in PR #160
11 lines
153 B
C
11 lines
153 B
C
#include <global.h>
|
|
|
|
#ifndef __GNUC__
|
|
#pragma intrinsic(sqrtf)
|
|
#define __builtin_sqrtf sqrtf
|
|
#endif
|
|
|
|
f32 sqrtf(f32 f) {
|
|
return __builtin_sqrtf(f);
|
|
}
|