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