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