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