OSDN Git Service

* java-tree.h (push_labeled_block, pop_labeled_block): Remove.
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-wtmoau.ads
index 5083c0b..57e2e9a 100644 (file)
@@ -6,7 +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- --
@@ -16,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, --
@@ -45,45 +45,45 @@ private package Ada.Wide_Text_IO.Modular_Aux is
    package U renames System.Unsigned_Types;
 
    procedure Get_Uns
-     (File  : in File_Type;
+     (File  : File_Type;
       Item  : out U.Unsigned;
-      Width : in Field);
+      Width : Field);
 
    procedure Get_LLU
-     (File  : in File_Type;
+     (File  : File_Type;
       Item  : out U.Long_Long_Unsigned;
-      Width : in Field);
+      Width : Field);
 
    procedure Gets_Uns
-     (From : in String;
+     (From : String;
       Item : out U.Unsigned;
       Last : out Positive);
 
    procedure Gets_LLU
-     (From : in String;
+     (From : String;
       Item : out U.Long_Long_Unsigned;
       Last : out Positive);
 
    procedure Put_Uns
-     (File  : in File_Type;
-      Item  : in U.Unsigned;
-      Width : in Field;
-      Base  : in Number_Base);
+     (File  : File_Type;
+      Item  : U.Unsigned;
+      Width : Field;
+      Base  : Number_Base);
 
    procedure Put_LLU
-     (File  : in File_Type;
-      Item  : in U.Long_Long_Unsigned;
-      Width : in Field;
-      Base  : in Number_Base);
+     (File  : File_Type;
+      Item  : U.Long_Long_Unsigned;
+      Width : Field;
+      Base  : Number_Base);
 
    procedure Puts_Uns
      (To   : out String;
-      Item : in U.Unsigned;
-      Base : in Number_Base);
+      Item : U.Unsigned;
+      Base : Number_Base);
 
    procedure Puts_LLU
      (To   : out String;
-      Item : in U.Long_Long_Unsigned;
-      Base : in Number_Base);
+      Item : U.Long_Long_Unsigned;
+      Base : Number_Base);
 
 end Ada.Wide_Text_IO.Modular_Aux;