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