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