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