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