#include "mine.h"

/* Function: min
   Returns the smaller of x and y.
*/
int min (int x, int y) {

   if (x < y) {
      return (x) ;
   } else {
      return (y) ;
   }
}

