blob: 30282d1998c925ae51929203a7bb8b1345925e3b [file] [log] [blame]
package body Pck is
function Create_Small return Data_Small is
begin
return (others => 1);
end Create_Small;
function Create_Large return Data_Large is
begin
return (others => 2);
end Create_Large;
end Pck;