ref: 5ab34fe6b03c4e0938f17fe445e96bc19bf76768 dir: /src/libc/stdlib/llabs.c/
#include <stdlib.h> #undef llabs long long llabs(long long n) { return (n < 0) ? -n : n; }