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