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