src/HOL/SPARK/Examples/RIPEMD-160/wordops.adb
author wenzelm
Wed, 21 Mar 2012 17:16:39 +0100
changeset 47065 cce369d41d50
parent 41561 d1318f3c86ba
permissions -rw-r--r--
tuned messages;

package body Wordops is

   function Rotate(I : Rotate_Amount; W : Word) return Word
   is
   begin
      return Interfaces.Rotate_Left (W, I);
   end Rotate;

end Wordops;