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