diff options
Diffstat (limited to 'libc-top-half/musl/src/stdlib/llabs.c')
-rw-r--r-- | libc-top-half/musl/src/stdlib/llabs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/stdlib/llabs.c b/libc-top-half/musl/src/stdlib/llabs.c new file mode 100644 index 0000000..9dfaf5c --- /dev/null +++ b/libc-top-half/musl/src/stdlib/llabs.c @@ -0,0 +1,6 @@ +#include <stdlib.h> + +long long llabs(long long a) +{ + return a>0 ? a : -a; +} |