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