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