• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <stdlib.h>
2 
abs(int a)3 int abs(int a)
4 {
5 	return a>0 ? a : -a;
6 }
7