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