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