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