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