summaryrefslogtreecommitdiff
path: root/include/std
diff options
context:
space:
mode:
authorTakaRikka <38417346+TakaRikka@users.noreply.github.com>2023-11-08 05:52:54 -0800
committerGitHub <noreply@github.com>2023-11-08 15:52:54 +0200
commit557d0822e56fc287243535a825f7a0a534fa14bd (patch)
treeba02abf3a13d9df11d45faa68ca04b11e8ad6dd0 /include/std
parent5a2a39f778ca99f26f3a1d54cb04cd5dfe10d9eb (diff)
work on daAlink horse, hvyboots, cut (#1981)
* work on alink_cut, alink_horse, alink_hvyboots * remove asm
Diffstat (limited to 'include/std')
-rw-r--r--include/std/cmath.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/std/cmath.h b/include/std/cmath.h
index 9a9e342f91..6de737b779 100644
--- a/include/std/cmath.h
+++ b/include/std/cmath.h
@@ -6,6 +6,10 @@ namespace std {
float fabs(float num) {
return fabsf(num);
}
+
+float abs(float num) {
+ return fabsf(num);
+}
} // namespace std
#endif