summaryrefslogtreecommitdiff
path: root/arm9/lib/src/FX_atan.c
diff options
context:
space:
mode:
Diffstat (limited to 'arm9/lib/src/FX_atan.c')
-rw-r--r--arm9/lib/src/FX_atan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arm9/lib/src/FX_atan.c b/arm9/lib/src/FX_atan.c
index 085763f8..979895a8 100644
--- a/arm9/lib/src/FX_atan.c
+++ b/arm9/lib/src/FX_atan.c
@@ -4,7 +4,7 @@
extern fx16 FX_AtanTable_[];
-u16 FX_Atan(fx32 x){
+ARM_FUNC u16 FX_Atan(fx32 x){
if (x >= 0)
{
if (x > 0x1000)
@@ -41,7 +41,7 @@ u16 FX_Atan(fx32 x){
}
}
-u16 FX_Atan2(fx32 x, fx32 y){
+ARM_FUNC u16 FX_Atan2(fx32 x, fx32 y){
fx32 result;
u32 positive, bias, denominator, numerator;
if (x > 0)