OSDN Git Service

* gimplify.c (gimplify_type_sizes) [POINTER_TYPE, REFERENCE_TYPE]:
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-tiinau.ads
index c4bd046..98bd55d 100644 (file)
@@ -6,8 +6,7 @@
 --                                                                          --
 --                                 S p e c                                  --
 --                                                                          --
---                                                                          --
---          Copyright (C) 1992-1997 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- --
@@ -17,8 +16,8 @@
 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
 -- for  more details.  You should have  received  a copy of the GNU General --
 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
--- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
--- MA 02111-1307, USA.                                                      --
+-- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
+-- Boston, MA 02110-1301, USA.                                              --
 --                                                                          --
 -- As a special exception,  if other files  instantiate  generics from this --
 -- unit, or you link  this unit with other files  to produce an executable, --
 private package Ada.Text_IO.Integer_Aux is
 
    procedure Get_Int
-     (File  : in File_Type;
+     (File  : File_Type;
       Item  : out Integer;
-      Width : in Field);
+      Width : Field);
 
    procedure Get_LLI
-     (File  : in File_Type;
+     (File  : File_Type;
       Item  : out Long_Long_Integer;
-      Width : in Field);
+      Width : Field);
 
    procedure Put_Int
-     (File  : in File_Type;
-      Item  : in Integer;
-      Width : in Field;
-      Base  : in Number_Base);
+     (File  : File_Type;
+      Item  : Integer;
+      Width : Field;
+      Base  : Number_Base);
 
    procedure Put_LLI
-     (File  : in File_Type;
-      Item  : in Long_Long_Integer;
-      Width : in Field;
-      Base  : in Number_Base);
+     (File  : File_Type;
+      Item  : Long_Long_Integer;
+      Width : Field;
+      Base  : Number_Base);
 
    procedure Gets_Int
-     (From : in String;
+     (From : String;
       Item : out Integer;
       Last : out Positive);
 
    procedure Gets_LLI
-     (From : in String;
+     (From : String;
       Item : out Long_Long_Integer;
       Last : out Positive);
 
    procedure Puts_Int
      (To   : out String;
-      Item : in Integer;
-      Base : in Number_Base);
+      Item : Integer;
+      Base : Number_Base);
 
    procedure Puts_LLI
      (To   : out String;
-      Item : in Long_Long_Integer;
-      Base : in Number_Base);
+      Item : Long_Long_Integer;
+      Base : Number_Base);
 
 end Ada.Text_IO.Integer_Aux;