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