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