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