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