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