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