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