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