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