OSDN Git Service

2006-10-31 Javier Miranda <miranda@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-timoio.ads
index c553c88..d1a7a15 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 S p e c                                  --
 --                                                                          --
---          Copyright (C) 1993-2005 Free Software Foundation, Inc.          --
+--          Copyright (C) 1993-2006, Free Software Foundation, Inc.         --
 --                                                                          --
 -- This specification is derived from the Ada Reference Manual for use with --
 -- GNAT. The copyright notice above, and the license provisions that follow --
@@ -50,34 +50,34 @@ package Ada.Text_IO.Modular_IO is
    Default_Base  : Number_Base := 10;
 
    procedure Get
-     (File  : in File_Type;
+     (File  : File_Type;
       Item  : out Num;
-      Width : in Field := 0);
+      Width : Field := 0);
 
    procedure Get
      (Item  : out Num;
-      Width : in Field := 0);
+      Width : Field := 0);
 
    procedure Put
-     (File  : in File_Type;
-      Item  : in Num;
-      Width : in Field := Default_Width;
-      Base  : in Number_Base := Default_Base);
+     (File  : File_Type;
+      Item  : Num;
+      Width : Field := Default_Width;
+      Base  : Number_Base := Default_Base);
 
    procedure Put
-     (Item  : in Num;
-      Width : in Field := Default_Width;
-      Base  : in Number_Base := Default_Base);
+     (Item  : Num;
+      Width : Field := Default_Width;
+      Base  : Number_Base := Default_Base);
 
    procedure Get
-     (From : in String;
+     (From : String;
       Item : out Num;
       Last : out Positive);
 
    procedure Put
      (To   : out String;
-      Item : in Num;
-      Base : in Number_Base := Default_Base);
+      Item : Num;
+      Base : Number_Base := Default_Base);
 
 private
    pragma Inline (Get);