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