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