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