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