From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg Galloway To: egcs@cygnus.com Subject: egcs-971016/libstc++ headers patch Date: Fri, 17 Oct 1997 14:36:00 -0000 Message-id: <199710171744.NAA04644@nospokes.gtri.gatech.edu> X-SW-Source: 1997-10/msg00736.html Fri Oct 17 12:01:11 EDT 1997 Gregory L. Galloway * 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 + #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 + #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 + #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 + #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 + #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 + #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 + #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 + #endif