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