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