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