1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- A D A . T E X T _ I O . F I X E D _ I O --
9 -- This specification is derived from the Ada Reference Manual for use with --
10 -- GNAT. In accordance with the copyright of that document, you can freely --
11 -- copy and modify this specification, provided that if you redistribute a --
12 -- modified version, any changes that you have made are clearly indicated. --
14 ------------------------------------------------------------------------------
16 -- In Ada 95, the package Ada.Text_IO.Fixed_IO is a subpackage of Text_IO.
17 -- This is for compatibility with Ada 83. In GNAT we make it a child package
18 -- to avoid loading the necessary code if Fixed_IO is not instantiated. See
19 -- routine Rtsfind.Check_Text_IO_Special_Unit for a description of how we
20 -- patch up the difference in semantics so that it is invisible to the Ada
26 package Ada
.Text_IO
.Fixed_IO
is
28 Default_Fore
: Field
:= Num
'Fore;
29 Default_Aft
: Field
:= Num
'Aft;
30 Default_Exp
: Field
:= 0;
44 Fore
: Field
:= Default_Fore
;
45 Aft
: Field
:= Default_Aft
;
46 Exp
: Field
:= Default_Exp
);
50 Fore
: Field
:= Default_Fore
;
51 Aft
: Field
:= Default_Aft
;
52 Exp
: Field
:= Default_Exp
);
62 Aft
: Field
:= Default_Aft
;
63 Exp
: Field
:= Default_Exp
);
69 end Ada
.Text_IO
.Fixed_IO
;