comparison gcc/ada/libgnat/a-textio.adb @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
4 -- -- 4 -- --
5 -- A D A . T E X T _ I O -- 5 -- A D A . T E X T _ I O --
6 -- -- 6 -- --
7 -- B o d y -- 7 -- B o d y --
8 -- -- 8 -- --
9 -- Copyright (C) 1992-2018, Free Software Foundation, Inc. -- 9 -- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
10 -- -- 10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under -- 11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- -- 12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 3, or (at your option) any later ver- -- 13 -- ware Foundation; either version 3, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- 14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
41 with Ada.Unchecked_Deallocation; 41 with Ada.Unchecked_Deallocation;
42 42
43 pragma Elaborate_All (System.File_IO); 43 pragma Elaborate_All (System.File_IO);
44 -- Needed because of calls to Chain_File in package body elaboration 44 -- Needed because of calls to Chain_File in package body elaboration
45 45
46 package body Ada.Text_IO is 46 package body Ada.Text_IO with
47 Refined_State => (File_System => (Standard_In,
48 Standard_Out,
49 Standard_Err,
50 Current_In,
51 Current_Out,
52 Current_Err,
53 In_Name,
54 Out_Name,
55 Err_Name,
56 WC_Encoding))
57 is
47 58
48 package FIO renames System.File_IO; 59 package FIO renames System.File_IO;
49 60
50 subtype AP is FCB.AFCB_Ptr; 61 subtype AP is FCB.AFCB_Ptr;
51 62