This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

egcs-971016/libstc++ headers patch



Fri Oct 17 12:01:11 EDT 1997  Gregory L. Galloway <gregg@eoeml.gtri.gatech.edu>

	* fstream,hash_map,hash_set,iomanip,iostream,strstream,Makefile.in,
	multimap,multiset: Added missing ANSI C++ header files.

*** libstdc++/fstream.orig	Tue Oct  7 14:06:25 1997
--- libstdc++/fstream	Tue Oct  7 14:07:38 1997
***************
*** 0 ****
--- 1,7 ----
+ // -*- C++ -*- forwarding header.
+ // This file is part of the GNU ANSI C++ Library.
+ 
+ #ifndef __FSTREAM__
+ #define __FSTREAM__
+ #include <fstream.h>
+ #endif
*** libstdc++/hash_map.orig	Tue Oct  7 14:06:25 1997
--- libstdc++/hash_map	Tue Oct  7 14:07:47 1997
***************
*** 0 ****
--- 1,7 ----
+ // -*- C++ -*- forwarding header.
+ // This file is part of the GNU ANSI C++ Library.
+ 
+ #ifndef __HASH_MAP__
+ #define __HASH_MAP__
+ #include <hash_map.h>
+ #endif
*** libstdc++/hash_set.orig	Tue Oct  7 14:06:33 1997
--- libstdc++/hash_set	Tue Oct  7 14:07:59 1997
***************
*** 0 ****
--- 1,7 ----
+ // -*- C++ -*- forwarding header.
+ // This file is part of the GNU ANSI C++ Library.
+ 
+ #ifndef __HASH_SET__
+ #define __HASH_SET__
+ #include <hash_set.h>
+ #endif
*** libstdc++/iomanip.orig	Tue Oct  7 14:06:41 1997
--- libstdc++/iomanip	Tue Oct  7 14:08:13 1997
***************
*** 0 ****
--- 1,7 ----
+ // -*- C++ -*- forwarding header.
+ // This file is part of the GNU ANSI C++ Library.
+ 
+ #ifndef __IOMANIP__
+ #define __IOMANIP__
+ #include <iomanip.h>
+ #endif
*** libstdc++/iostream.orig	Tue Oct  7 14:06:33 1997
--- libstdc++/iostream	Tue Oct  7 14:08:24 1997
***************
*** 0 ****
--- 1,7 ----
+ // -*- C++ -*- forwarding header.
+ // This file is part of the GNU ANSI C++ Library.
+ 
+ #ifndef __IOSTREAM__
+ #define __IOSTREAM__
+ #include <iostream.h>
+ #endif
*** libstdc++/strstream.orig	Tue Oct  7 14:06:41 1997
--- libstdc++/strstream	Tue Oct  7 14:08:39 1997
***************
*** 0 ****
--- 1,7 ----
+ // -*- C++ -*- forwarding header.
+ // This file is part of the GNU ANSI C++ Library.
+ 
+ #ifndef __STRSTREAM__
+ #define __STRSTREAM__
+ #include <strstream.h>
+ #endif
*** libstdc++/Makefile.in.orig	Wed Oct 15 14:41:04 1997
--- libstdc++/Makefile.in	Wed Oct 15 14:42:16 1997
***************
*** 24,30 ****
  	 csetjmp csignal cstdarg cstddef cstdio cstdlib cstring ctime \
  	 cwchar cwctype string stdexcept \
  	 algorithm deque list map queue set stack vector utility functional \
! 	 iterator memory numeric
  
  ARLIB   = libstdc++.a
  SHLIB   = libstdc++.so.$(VERSION)
--- 24,31 ----
  	 csetjmp csignal cstdarg cstddef cstdio cstdlib cstring ctime \
  	 cwchar cwctype string stdexcept \
  	 algorithm deque list map queue set stack vector utility functional \
! 	 iterator memory numeric \
! 	 fstream hash_map hash_set iomanip iostream strstream
  
  ARLIB   = libstdc++.a
  SHLIB   = libstdc++.so.$(VERSION)
*** libstdc++/multimap.orig	Wed Oct 15 16:16:36 1997
--- libstdc++/multimap	Wed Oct 15 16:16:16 1997
***************
*** 0 ****
--- 1,7 ----
+ // -*- C++ -*- forwarding header.
+ // This file is part of the GNU ANSI C++ Library.
+ 
+ #ifndef __MULTIMAP__
+ #define __MULTIMAP__
+ #include <multimap.h>
+ #endif
*** libstdc++/multiset.orig	Wed Oct 15 16:16:32 1997
--- libstdc++/multiset	Wed Oct 15 16:16:10 1997
***************
*** 0 ****
--- 1,7 ----
+ // -*- C++ -*- forwarding header.
+ // This file is part of the GNU ANSI C++ Library.
+ 
+ #ifndef __MULTISET__
+ #define __MULTISET__
+ #include <multiset.h>
+ #endif


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]