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