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