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