view gcc/testsuite/gnat.dg/loop_optimization9.ads @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children
line wrap: on
line source

with GNAT.Strings; use GNAT.Strings;

package Loop_Optimization9 is

   type File_Descriptor is new Integer;

   procedure Create_Temp_File_Internal
     (FD   : out File_Descriptor;
      Name : out String_Access);

   subtype Argument_List is String_List;

   subtype Argument_List_Access is String_List_Access;

   function Argument_String_To_List
     (Arg_String : String) return Argument_List_Access;

end Loop_Optimization9;