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