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