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