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