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