/***********************************************************************
* This file provides the functions min() and max() for gcc that are
* needed by OpenScreen.
*
* Michael Schmeing (Sun Mar 02 16:23:25 1997)
***********************************************************************/

#include <exec/types.h>

WORD max(WORD x, WORD y)
{
  return (x > y) ? x : y;
}

WORD min(WORD x, WORD y)
{
  return (x < y) ? x : y;
}

