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