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