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