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