labs.c 65 B

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