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