mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 13:30:47 +00:00
3d050f2861
* Decompile a bunch of small files * Rename dacrate to dacRate * Run format.sh * Minor fixes in PR #160
10 lines
148 B
C
10 lines
148 B
C
#include <global.h>
|
|
|
|
#ifndef __GNUC__
|
|
#pragma intrinsic(sqrt)
|
|
#define __builtin_sqrt sqrt
|
|
#endif
|
|
|
|
f64 sqrt(f64 f) {
|
|
return __builtin_sqrt(f);
|
|
}
|