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