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