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