home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / lib-writ.ads < prev    next >
Text File  |  1996-09-28  |  2KB  |  44 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --                             L I B . W R I T                              --
  6. --                                                                          --
  7. --                                 S p e c                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.1 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. --  This package contains the routines for writing the library information
  26.  
  27. package Lib.Writ is
  28.  
  29.    function Increment_Serial_Number return Int;
  30.    --  Increment Serial_Number field for current unit, and return the
  31.    --  incremented value.
  32.  
  33.    procedure Store_Linker_Option_String (S : String_Id);
  34.    --  This procedure is called to register the string from a pragma
  35.    --  Linker_Option. The argument is the Id of the string to register.
  36.  
  37.    procedure Write_Library_Info;
  38.    --  This procedure writes the library information for the current main unit
  39.  
  40. private
  41.    pragma Inline (Increment_Serial_Number);
  42.  
  43. end Lib.Writ;
  44.