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