OSDN Git Service

2007-04-20 Javier Miranda <miranda@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-io.ads
index a722736..c2797c2 100644 (file)
@@ -6,9 +6,7 @@
 --                                                                          --
 --                                 S p e c                                  --
 --                                                                          --
---                            $Revision: 1.5 $                              --
---                                                                          --
---          Copyright (C) 1992-1998 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- --
@@ -18,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, --
@@ -29,7 +27,7 @@
 -- covered by the  GNU Public License.                                      --
 --                                                                          --
 -- GNAT was originally developed  by the GNAT team at  New York University. --
--- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
+-- Extensive contributions were provided by Ada Core Technologies Inc.      --
 --                                                                          --
 ------------------------------------------------------------------------------
 
@@ -39,7 +37,7 @@
 --  for character, integer, string and a new line function
 
 package System.IO is
-pragma Preelaborate (IO);
+   pragma Preelaborate;
 
    procedure Put (X : Integer);
 
@@ -50,4 +48,19 @@ pragma Preelaborate (IO);
 
    procedure New_Line (Spacing : Positive := 1);
 
+   type File_Type is limited private;
+
+   function Standard_Error return File_Type;
+   function Standard_Output return File_Type;
+
+   procedure Set_Output (File : File_Type);
+
+private
+
+   type File_Type is (Stdout, Stderr);
+   --  Stdout = Standard_Output, Stderr = Standard_Error
+
+   pragma Inline (Standard_Error);
+   pragma Inline (Standard_Output);
+
 end System.IO;