mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 13:30:47 +00:00
11 lines
148 B
C
11 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);
|
||
|
}
|