llabs.c (94B)
1 #include <stdlib.h> 2 3 #undef llabs 4 5 long long 6 llabs(long long n) 7 { 8 return (n < 0) ? -n : n; 9 }