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