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