diff options
Diffstat (limited to 'src/user/lib/math.c')
-rw-r--r-- | src/user/lib/math.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/user/lib/math.c b/src/user/lib/math.c index db1f2ec..bf7c039 100644 --- a/src/user/lib/math.c +++ b/src/user/lib/math.c @@ -1,11 +1,6 @@ #include <math.h> #include <user/lib/panic.h> -int abs(int i) { - return i < 0 ? -i : i; -} - - // TODO port a libm #pragma GCC diagnostic ignored "-Wunused-parameter" double acos(double x) { __libc_panic("unimplemented"); } |