1 #define _RESEARCH_SOURCE 2 #include <libv.h> 3 max(int a,int b)4 max(int a, int b) 5 { 6 return (a>b? a: b); 7 } 8