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