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