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