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