ref: dea69649e49ba7a208c62ba0d4dc3bfb1d341353 dir: /libnpe/abs.c/
#include <stdlib.h> long long llabs(long long a) { if(a < 0) return -a; return a; }