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