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