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