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