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