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