summaryrefslogtreecommitdiff
path: root/include/std
diff options
context:
space:
mode:
Diffstat (limited to 'include/std')
-rw-r--r--include/std/cmath.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/std/cmath.h b/include/std/cmath.h
deleted file mode 100644
index 6de737b779..0000000000
--- a/include/std/cmath.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef STD_CMATH_H_
-#define STD_CMATH_H_
-
-
-namespace std {
-float fabs(float num) {
- return fabsf(num);
-}
-
-float abs(float num) {
- return fabsf(num);
-}
-} // namespace std
-
-#endif