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