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