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