-- $Date: 2004/02/02 08:47:56 $
-- $Revision: 1.1 $
-- $Author: jcrocholl $

package body Positive_Functions is

   function Hash
     (Key : in Positive;
      Max : in Positive)
     return Positive is
   begin
      return 1 + Key mod Max;
   end Hash;

end Positive_Functions;