mirror of
https://github.com/HarbourMasters/Starship
synced 2026-08-14 21:03:11 -04:00
11 lines
171 B
C
11 lines
171 B
C
#include <libultra/types.h>
|
|
#include "math.h"
|
|
|
|
#ifdef COMPILER_GCC
|
|
#include "src/libultra/gcc_fix/sqrtf.c.inc"
|
|
#endif
|
|
|
|
f32 guSqrtf(f32 value) {
|
|
return sqrtf(value);
|
|
}
|