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