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