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