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