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