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