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