crossroads

Git mirror of https://crossroads.e-tunity.com/
git clone git://git.finwo.net/app/crossroads
Log | Files | Refs | LICENSE

maxtimeout.cc (121B)


      1 #include "sys"
      2 
      3 int maxtimeout(int a, int b) {
      4     if (!a)
      5 	return b;
      6     if (!b)
      7 	return a;
      8     return a < b ? a : b;
      9 }