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