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