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