]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.ada/array_return/pck.adb
This commit was generated by cvs2svn to track changes on a CVS vendor
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.ada / array_return / pck.adb
1 package body Pck is
2
3 function Create_Small return Data_Small is
4 begin
5 return (others => 1);
6 end Create_Small;
7
8 function Create_Large return Data_Large is
9 begin
10 return (others => 2);
11 end Create_Large;
12
13 end Pck;