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