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