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