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