1with Interfaces;
2
3package Opt61_Pkg is
4
5   subtype Int64 is Interfaces.Integer_64;
6
7   procedure Double_Divide
8     (X, Y, Z : Int64;
9      Q, R    : out Int64;
10      Round   : Boolean);
11
12end Opt61_Pkg;
13