src/HOL/SPARK/Examples/RIPEMD-160/wordops.adb
author wenzelm
Wed, 13 Jan 2016 00:12:43 +0100
changeset 62157 adcaaf6c9910
parent 41561 d1318f3c86ba
permissions -rw-r--r--
more good NEWS;

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;