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