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