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