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