src/HOL/SPARK/Examples/RIPEMD-160/wordops.adb
author wenzelm
Fri, 20 Mar 2020 20:23:40 +0100
changeset 71574 95460356d633
parent 41561 d1318f3c86ba
permissions -rw-r--r--
avoid premature crash due to missing session parents/imports;

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;