aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/a-tideau.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/a-tideau.adb')
-rw-r--r--gcc/ada/a-tideau.adb58
1 files changed, 27 insertions, 31 deletions
diff --git a/gcc/ada/a-tideau.adb b/gcc/ada/a-tideau.adb
index 82ed849..5be5f66 100644
--- a/gcc/ada/a-tideau.adb
+++ b/gcc/ada/a-tideau.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 1992-2005, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -46,10 +46,9 @@ package body Ada.Text_IO.Decimal_Aux is
-------------
function Get_Dec
- (File : in File_Type;
- Width : in Field;
- Scale : Integer)
- return Integer
+ (File : File_Type;
+ Width : Field;
+ Scale : Integer) return Integer
is
Buf : String (1 .. Field'Last);
Ptr : aliased Integer;
@@ -75,10 +74,9 @@ package body Ada.Text_IO.Decimal_Aux is
-------------
function Get_LLD
- (File : in File_Type;
- Width : in Field;
- Scale : Integer)
- return Long_Long_Integer
+ (File : File_Type;
+ Width : Field;
+ Scale : Integer) return Long_Long_Integer
is
Buf : String (1 .. Field'Last);
Ptr : aliased Integer;
@@ -104,10 +102,9 @@ package body Ada.Text_IO.Decimal_Aux is
--------------
function Gets_Dec
- (From : in String;
+ (From : String;
Last : access Positive;
- Scale : Integer)
- return Integer
+ Scale : Integer) return Integer
is
Pos : aliased Integer;
Item : Integer;
@@ -129,10 +126,9 @@ package body Ada.Text_IO.Decimal_Aux is
--------------
function Gets_LLD
- (From : in String;
+ (From : String;
Last : access Positive;
- Scale : Integer)
- return Long_Long_Integer
+ Scale : Integer) return Long_Long_Integer
is
Pos : aliased Integer;
Item : Long_Long_Integer;
@@ -154,11 +150,11 @@ package body Ada.Text_IO.Decimal_Aux is
-------------
procedure Put_Dec
- (File : in File_Type;
- Item : in Integer;
- Fore : in Field;
- Aft : in Field;
- Exp : in Field;
+ (File : File_Type;
+ Item : Integer;
+ Fore : Field;
+ Aft : Field;
+ Exp : Field;
Scale : Integer)
is
Buf : String (1 .. Field'Last);
@@ -174,11 +170,11 @@ package body Ada.Text_IO.Decimal_Aux is
-------------
procedure Put_LLD
- (File : in File_Type;
- Item : in Long_Long_Integer;
- Fore : in Field;
- Aft : in Field;
- Exp : in Field;
+ (File : File_Type;
+ Item : Long_Long_Integer;
+ Fore : Field;
+ Aft : Field;
+ Exp : Field;
Scale : Integer)
is
Buf : String (1 .. Field'Last);
@@ -195,9 +191,9 @@ package body Ada.Text_IO.Decimal_Aux is
procedure Puts_Dec
(To : out String;
- Item : in Integer;
- Aft : in Field;
- Exp : in Field;
+ Item : Integer;
+ Aft : Field;
+ Exp : Field;
Scale : Integer)
is
Buf : String (1 .. Field'Last);
@@ -230,9 +226,9 @@ package body Ada.Text_IO.Decimal_Aux is
procedure Puts_LLD
(To : out String;
- Item : in Long_Long_Integer;
- Aft : in Field;
- Exp : in Field;
+ Item : Long_Long_Integer;
+ Aft : Field;
+ Exp : Field;
Scale : Integer)
is
Buf : String (1 .. Field'Last);