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