src/HOL/SPARK/Examples/RIPEMD-160/wordops.adb
author blanchet
Tue, 23 Apr 2013 16:49:14 +0200
changeset 51743 51f1f4ba18f3
parent 41561 d1318f3c86ba
permissions -rw-r--r--
tuning

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;