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