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