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