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