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