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