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