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