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