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