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