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