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