summaryrefslogtreecommitdiff
path: root/gcc/ada/a-tideio.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/a-tideio.adb')
-rw-r--r--gcc/ada/a-tideio.adb34
1 files changed, 17 insertions, 17 deletions
diff --git a/gcc/ada/a-tideio.adb b/gcc/ada/a-tideio.adb
index 3f945025042..05d2c03000c 100644
--- a/gcc/ada/a-tideio.adb
+++ b/gcc/ada/a-tideio.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- --
@@ -44,9 +44,9 @@ package body Ada.Text_IO.Decimal_IO is
---------
procedure Get
- (File : in File_Type;
+ (File : File_Type;
Item : out Num;
- Width : in Field := 0)
+ Width : Field := 0)
is
pragma Unsuppress (Range_Check);
@@ -64,14 +64,14 @@ package body Ada.Text_IO.Decimal_IO is
procedure Get
(Item : out Num;
- Width : in Field := 0)
+ Width : Field := 0)
is
begin
Get (Current_In, Item, Width);
end Get;
procedure Get
- (From : in String;
+ (From : String;
Item : out Num;
Last : out Positive)
is
@@ -95,11 +95,11 @@ package body Ada.Text_IO.Decimal_IO is
---------
procedure Put
- (File : in File_Type;
- Item : in Num;
- Fore : in Field := Default_Fore;
- Aft : in Field := Default_Aft;
- Exp : in Field := Default_Exp)
+ (File : File_Type;
+ Item : Num;
+ Fore : Field := Default_Fore;
+ Aft : Field := Default_Aft;
+ Exp : Field := Default_Exp)
is
begin
if Num'Size > Integer'Size then
@@ -113,10 +113,10 @@ package body Ada.Text_IO.Decimal_IO is
end Put;
procedure Put
- (Item : in Num;
- Fore : in Field := Default_Fore;
- Aft : in Field := Default_Aft;
- Exp : in Field := Default_Exp)
+ (Item : Num;
+ Fore : Field := Default_Fore;
+ Aft : Field := Default_Aft;
+ Exp : Field := Default_Exp)
is
begin
Put (Current_Out, Item, Fore, Aft, Exp);
@@ -124,9 +124,9 @@ package body Ada.Text_IO.Decimal_IO is
procedure Put
(To : out String;
- Item : in Num;
- Aft : in Field := Default_Aft;
- Exp : in Field := Default_Exp)
+ Item : Num;
+ Aft : Field := Default_Aft;
+ Exp : Field := Default_Exp)
is
begin
if Num'Size > Integer'Size then