1 #include <stdlib.h>
2 
labs(long a)3 long labs(long a)
4 {
5 	return a>0 ? a : -a;
6 }
7