aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/debug11_pkg.ads
blob: dc453100d41f589cbf7857433c23415acf1ab968 (plain)
1
2
3
4
5
6
7
8
9
10
11
package Debug11_Pkg is

   Global_Imported_Var : Integer;
   pragma Import (C, Global_Imported_Var, "imported_var");

   function Global_Imported_Func return Integer;
   pragma Import (C, Global_Imported_Func, "imported_func");

   procedure Dummy;

end Debug11_Pkg;