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