summaryrefslogtreecommitdiff
path: root/include/std
diff options
context:
space:
mode:
authorTakaRikka <38417346+TakaRikka@users.noreply.github.com>2023-07-25 15:25:04 -0700
committerGitHub <noreply@github.com>2023-07-25 18:25:04 -0400
commit62ab7c9a0bf95ec3511605e31bd7637caa89ec9f (patch)
treeffd71c8ac8b4fabab6762078a58895ee749bce1e /include/std
parent469d9cfe91187f2b267afcfa5f980cb66bd0cdf1 (diff)
d_a_obj_snowEffTag / d_a_obj_digplace / d_a_tag_lv2prchk OK (#390)
* d_a_obj_snowEffTag OK * d_a_obj_digplace OK * d_a_tag_lv2prchk OK * remove asm / fix tag_waterfall warnings
Diffstat (limited to 'include/std')
-rw-r--r--include/std/cmath.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/std/cmath.h b/include/std/cmath.h
new file mode 100644
index 0000000000..ad1775c2d3
--- /dev/null
+++ b/include/std/cmath.h
@@ -0,0 +1,12 @@
+#ifndef STD_CMATH_H_
+#define STD_CMATH_H_
+
+#include "MSL_C/math.h"
+
+namespace std {
+float fabs(float num) {
+ return fabsf(num);
+}
+} // namespace std
+
+#endif