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