[v3] header tweaks

Benjamin Kosnik bkoz@redhat.com
Tue Mar 26 20:12:00 GMT 2002


Jeff, here you go. Phil, can you double-check the Makefile.am rule?

thanks,
benjamin

tested x86/linux

2002-03-26  Benjamin Kosnik  <bkoz@redhat.com>

	* include/c/: Guard with _CPP_.
	* include/c_std/: Same.
	* include/Makefile.am: Fixup install, link routines for null
	c_base_headers_extra scenarios.
	* include/Makefile.in: Regerate.

Index: include/Makefile.am
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/Makefile.am,v
retrieving revision 1.32
diff -c -p -r1.32 Makefile.am
*** Makefile.am	2002/03/23 03:18:55	1.32
--- Makefile.am	2002/03/27 04:07:35
*************** stamp-bits: ${bits_headers}
*** 324,330 ****
  	(cd ${bits_builddir} && @LN_S@ $? . || true) ;\
  	echo `date` > stamp-bits
  
! stamp-c_base: ${c_base_headers} ${c_base_headers_extra}
  	@if [ ! -d "${c_base_builddir}" ]; then \
  	  mkdir -p ${c_base_builddir} ;\
  	fi ;\
--- 324,330 ----
  	(cd ${bits_builddir} && @LN_S@ $? . || true) ;\
  	echo `date` > stamp-bits
  
! stamp-c_base: ${c_base_headers} ${c_base_headers_extra} 
  	@if [ ! -d "${c_base_builddir}" ]; then \
  	  mkdir -p ${c_base_builddir} ;\
  	fi ;\
*************** stamp-c_base: ${c_base_headers} ${c_base
*** 332,338 ****
  	  official_name=`echo $$h | sed -e 's,.*/std_,,' -e 's,\.h$$,,'` ;\
  	  @LN_S@ $$h ./$${official_name} || true ;\
  	done) ;\
! 	(cd ${bits_builddir} && @LN_S@ ${c_base_headers_extra}  . || true) ;\
  	echo `date` > stamp-c_base
  
  stamp-backward: ${backward_headers}
--- 332,340 ----
  	  official_name=`echo $$h | sed -e 's,.*/std_,,' -e 's,\.h$$,,'` ;\
  	  @LN_S@ $$h ./$${official_name} || true ;\
  	done) ;\
! 	if [ ! -z "${c_base_headers_extra}" ]; then \
! 	  (cd ${bits_builddir} && @LN_S@ ${c_base_headers_extra}  . || true) ;\
! 	fi ;\
  	echo `date` > stamp-c_base
  
  stamp-backward: ${backward_headers}
*************** install-data-local:
*** 434,441 ****
  	for file in ${c_base_headers_rename}; do \
  	  $(INSTALL_DATA) ${c_base_builddir}/$${file} \
  	    ${gxx_include_dir}/${c_base_builddir}; done
! 	for file in ${c_base_headers_extra}; do \
! 	  $(INSTALL_DATA) $${file} ${gxx_include_dir}/${bits_builddir}; done
  	$(INSTALL) -d ${gxx_include_dir}/${std_builddir}
  	for file in ${std_headers_rename}; do \
  	  $(INSTALL_DATA) ${std_builddir}/$${file} \
--- 436,444 ----
  	for file in ${c_base_headers_rename}; do \
  	  $(INSTALL_DATA) ${c_base_builddir}/$${file} \
  	    ${gxx_include_dir}/${c_base_builddir}; done
! 	c_base_headers_extra_install=${c_base_headers_extra};\
! 	for file in $$c_base_headers_extra_install; do \
! 	  $(INSTALL_DATA) $$file ${gxx_include_dir}/${bits_builddir}; done
  	$(INSTALL) -d ${gxx_include_dir}/${std_builddir}
  	for file in ${std_headers_rename}; do \
  	  $(INSTALL_DATA) ${std_builddir}/$${file} \
Index: include/c/std_cctype.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_cctype.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_cctype.h
*** std_cctype.h	2002/03/23 03:18:56	1.2
--- std_cctype.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: <ccytpe>
  //
  
! #ifndef _CCTYPE
! #define _CCTYPE 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: <ccytpe>
  //
  
! #ifndef _CPP_CCTYPE
! #define _CPP_CCTYPE 1
  
  #pragma GCC system_header
  
Index: include/c/std_cerrno.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_cerrno.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_cerrno.h
*** std_cerrno.h	2002/03/23 03:18:56	1.2
--- std_cerrno.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 19.3  Error numbers
  //
  
! #ifndef _CERRNO
! #define _CERRNO 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 19.3  Error numbers
  //
  
! #ifndef _CPP_CERRNO
! #define _CPP_CERRNO 1
  
  #pragma GCC system_header
  
Index: include/c/std_cfloat.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_cfloat.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_cfloat.h
*** std_cfloat.h	2002/03/23 03:18:56	1.2
--- std_cfloat.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 18.2.2  Implementation properties: C library
  //
  
! #ifndef _CFLOAT
! #define _CFLOAT 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 18.2.2  Implementation properties: C library
  //
  
! #ifndef _CPP_CFLOAT
! #define _CPP_CFLOAT 1
  
  #pragma GCC system_header
  
Index: include/c/std_climits.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_climits.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_climits.h
*** std_climits.h	2002/03/23 03:18:56	1.2
--- std_climits.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 18.2.2  Implementation properties: C library
  //
  
! #ifndef _CLIMITS
! #define _CLIMITS	1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 18.2.2  Implementation properties: C library
  //
  
! #ifndef _CPP_CLIMITS
! #define _CPP_CLIMITS	1
  
  #pragma GCC system_header
  
Index: include/c/std_clocale.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_clocale.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_clocale.h
*** std_clocale.h	2002/03/23 03:18:56	1.2
--- std_clocale.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 18.2.2  Implementation properties: C library
  //
  
! #ifndef _CLOCALE
! #define _CLOCALE 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 18.2.2  Implementation properties: C library
  //
  
! #ifndef _CPP_CLOCALE
! #define _CPP_CLOCALE 1
  
  #pragma GCC system_header
  
Index: include/c/std_cmath.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_cmath.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_cmath.h
*** std_cmath.h	2002/03/23 03:18:56	1.2
--- std_cmath.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 26.5  C library
  //
  
! #ifndef _CMATH
! #define _CMATH 1
   
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 26.5  C library
  //
  
! #ifndef _CPP_CMATH
! #define _CPP_CMATH 1
   
  #pragma GCC system_header
  
Index: include/c/std_csetjmp.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_csetjmp.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_csetjmp.h
*** std_csetjmp.h	2002/03/23 03:18:56	1.2
--- std_csetjmp.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 20.4.6  C library
  //
  
! #ifndef _CSETJMP
! #define _CSETJMP 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 20.4.6  C library
  //
  
! #ifndef _CPP_CSETJMP
! #define _CPP_CSETJMP 1
  
  #pragma GCC system_header
  
Index: include/c/std_csignal.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_csignal.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_csignal.h
*** std_csignal.h	2002/03/23 03:18:56	1.2
--- std_csignal.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 20.4.6  C library
  //
  
! #ifndef _CSIGNAL
! #define _CSIGNAL 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 20.4.6  C library
  //
  
! #ifndef _CPP_CSIGNAL
! #define _CPP_CSIGNAL 1
  
  #pragma GCC system_header
  
Index: include/c/std_cstdarg.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_cstdarg.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_cstdarg.h
*** std_cstdarg.h	2002/03/23 03:18:56	1.2
--- std_cstdarg.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 20.4.6  C library
  //
  
! #ifndef _CSTDARG
! #define _CSTDARG 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 20.4.6  C library
  //
  
! #ifndef _CPP_CSTDARG
! #define _CPP_CSTDARG 1
  
  #pragma GCC system_header
  
Index: include/c/std_cstddef.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_cstddef.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_cstddef.h
*** std_cstddef.h	2002/03/23 03:18:56	1.2
--- std_cstddef.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 18.1  Types
  //
  
! #ifndef _CSTDDEF
! #define _CSTDDEF 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 18.1  Types
  //
  
! #ifndef _CPP_CSTDDEF
! #define _CPP_CSTDDEF 1
  
  #pragma GCC system_header
  
Index: include/c/std_cstdio.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_cstdio.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_cstdio.h
*** std_cstdio.h	2002/03/23 03:18:57	1.2
--- std_cstdio.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 27.8.2  C Library files
  //
  
! #ifndef _CSTDIO
! #define _CSTDIO 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 27.8.2  C Library files
  //
  
! #ifndef _CPP_CSTDIO
! #define _CPP_CSTDIO 1
  
  #pragma GCC system_header
  
Index: include/c/std_cstdlib.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_cstdlib.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_cstdlib.h
*** std_cstdlib.h	2002/03/23 03:18:57	1.2
--- std_cstdlib.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 20.4.6  C library
  //
  
! #ifndef _CSTDLIB
! #define _CSTDLIB 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 20.4.6  C library
  //
  
! #ifndef _CPP_CSTDLIB
! #define _CPP_CSTDLIB 1
  
  #pragma GCC system_header
  
Index: include/c/std_cstring.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_cstring.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_cstring.h
*** std_cstring.h	2002/03/23 03:18:57	1.2
--- std_cstring.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 20.4.6  C library
  //
  
! #ifndef _CSTRING
! #define _CSTRING 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 20.4.6  C library
  //
  
! #ifndef _CPP_CSTRING
! #define _CPP_CSTRING 1
  
  #pragma GCC system_header
  
Index: include/c/std_ctime.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_ctime.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_ctime.h
*** std_ctime.h	2002/03/23 03:18:57	1.2
--- std_ctime.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 20.5  Date and time
  //
  
! #ifndef _CTIME
! #define _CTIME 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 20.5  Date and time
  //
  
! #ifndef _CPP_CTIME
! #define _CPP_CTIME 1
  
  #pragma GCC system_header
  
Index: include/c/std_cwchar.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_cwchar.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_cwchar.h
*** std_cwchar.h	2002/03/23 03:18:57	1.2
--- std_cwchar.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: 21.4
  //
  
! #ifndef _CWCHAR
! #define _CWCHAR 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: 21.4
  //
  
! #ifndef _CPP_CWCHAR
! #define _CPP_CWCHAR 1
  
  #pragma GCC system_header
  
Index: include/c/std_cwctype.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c/std_cwctype.h,v
retrieving revision 1.2
diff -c -p -r1.2 std_cwctype.h
*** std_cwctype.h	2002/03/23 03:18:57	1.2
--- std_cwctype.h	2002/03/27 04:07:37
***************
*** 31,38 ****
  // ISO C++ 14882: <cwctype>
  //
  
! #ifndef _CWCTYPE
! #define _CWCTYPE 1
  
  #pragma GCC system_header
  
--- 31,38 ----
  // ISO C++ 14882: <cwctype>
  //
  
! #ifndef _CPP_CWCTYPE
! #define _CPP_CWCTYPE 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_cctype.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_cctype.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_cctype.h
*** std_cctype.h	2002/03/23 03:18:58	1.3
--- std_cctype.h	2002/03/27 04:07:37
***************
*** 40,47 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CCTYPE
! #define _CCTYPE 1
  
  #pragma GCC system_header
  
--- 40,47 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CCTYPE
! #define _CPP_CCTYPE 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_cerrno.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_cerrno.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_cerrno.h
*** std_cerrno.h	2002/03/23 03:18:58	1.3
--- std_cerrno.h	2002/03/27 04:07:40
***************
*** 40,47 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CERRNO
! #define _CERRNO 1
  
  #pragma GCC system_header
  
--- 40,47 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CERRNO
! #define _CPP_CERRNO 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_cfloat.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_cfloat.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_cfloat.h
*** std_cfloat.h	2002/03/23 03:18:58	1.3
--- std_cfloat.h	2002/03/27 04:07:40
***************
*** 40,47 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CFLOAT
! #define _CFLOAT 1
  
  #pragma GCC system_header
  
--- 40,47 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CFLOAT
! #define _CPP_CFLOAT 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_climits.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_climits.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_climits.h
*** std_climits.h	2002/03/23 03:18:58	1.3
--- std_climits.h	2002/03/27 04:07:40
***************
*** 41,48 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CLIMITS
! #define _CLIMITS	1
  
  #pragma GCC system_header
  
--- 41,48 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CLIMITS
! #define _CPP_CLIMITS	1
  
  #pragma GCC system_header
  
Index: include/c_std/std_clocale.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_clocale.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_clocale.h
*** std_clocale.h	2002/03/23 03:18:58	1.3
--- std_clocale.h	2002/03/27 04:07:40
***************
*** 41,48 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CLOCALE
! #define _CLOCALE 1
  
  #pragma GCC system_header
  
--- 41,48 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CLOCALE
! #define _CPP_CLOCALE 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_cmath.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_cmath.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_cmath.h
*** std_cmath.h	2002/03/23 03:18:58	1.3
--- std_cmath.h	2002/03/27 04:07:40
***************
*** 41,48 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CMATH
! #define _CMATH 1
  
  #pragma GCC system_header
  
--- 41,48 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CMATH
! #define _CPP_CMATH 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_csetjmp.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_csetjmp.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_csetjmp.h
*** std_csetjmp.h	2002/03/23 03:18:58	1.3
--- std_csetjmp.h	2002/03/27 04:07:40
***************
*** 41,48 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CSETJMP
! #define _CSETJMP 1
  
  #pragma GCC system_header
  
--- 41,48 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CSETJMP
! #define _CPP_CSETJMP 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_csignal.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_csignal.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_csignal.h
*** std_csignal.h	2002/03/23 03:18:58	1.3
--- std_csignal.h	2002/03/27 04:07:40
***************
*** 41,48 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CSIGNAL
! #define _CSIGNAL 1
  
  #pragma GCC system_header
  
--- 41,48 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CSIGNAL
! #define _CPP_CSIGNAL 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_cstdarg.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_cstdarg.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_cstdarg.h
*** std_cstdarg.h	2002/03/23 03:18:58	1.3
--- std_cstdarg.h	2002/03/27 04:07:40
***************
*** 40,47 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CSTDARG
! #define _CSTDARG 1
  
  #pragma GCC system_header
  
--- 40,47 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CSTDARG
! #define _CPP_CSTDARG 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_cstddef.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_cstddef.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_cstddef.h
*** std_cstddef.h	2002/03/23 03:18:58	1.3
--- std_cstddef.h	2002/03/27 04:07:40
***************
*** 40,47 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CSTDDEF
! #define _CSTDDEF 1
  
  #pragma GCC system_header
  
--- 40,47 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CSTDDEF
! #define _CPP_CSTDDEF 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_cstdio.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_cstdio.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_cstdio.h
*** std_cstdio.h	2002/03/23 03:18:58	1.3
--- std_cstdio.h	2002/03/27 04:07:40
***************
*** 41,48 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CSTDIO
! #define _CSTDIO 1
  
  #pragma GCC system_header
  
--- 41,48 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CSTDIO
! #define _CPP_CSTDIO 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_cstdlib.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_cstdlib.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_cstdlib.h
*** std_cstdlib.h	2002/03/23 03:18:58	1.3
--- std_cstdlib.h	2002/03/27 04:07:40
***************
*** 41,48 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CSTDLIB
! #define _CSTDLIB 1
  
  #pragma GCC system_header
  
--- 41,48 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CSTDLIB
! #define _CPP_CSTDLIB 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_cstring.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_cstring.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_cstring.h
*** std_cstring.h	2002/03/23 03:18:58	1.3
--- std_cstring.h	2002/03/27 04:07:41
***************
*** 41,48 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CSTRING
! #define _CSTRING 1
  
  #pragma GCC system_header
  
--- 41,48 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CSTRING
! #define _CPP_CSTRING 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_ctime.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_ctime.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_ctime.h
*** std_ctime.h	2002/03/23 03:18:58	1.3
--- std_ctime.h	2002/03/27 04:07:41
***************
*** 41,48 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CTIME
! #define _CTIME 1
  
  #pragma GCC system_header
  
--- 41,48 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CTIME
! #define _CPP_CTIME 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_cwchar.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_cwchar.h,v
retrieving revision 1.3
diff -c -p -r1.3 std_cwchar.h
*** std_cwchar.h	2002/03/23 03:18:58	1.3
--- std_cwchar.h	2002/03/27 04:07:41
***************
*** 41,48 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CWCHAR
! #define _CWCHAR 1
  
  #pragma GCC system_header
  
--- 41,48 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CWCHAR
! #define _CPP_CWCHAR 1
  
  #pragma GCC system_header
  
Index: include/c_std/std_cwctype.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/std_cwctype.h,v
retrieving revision 1.4
diff -c -p -r1.4 std_cwctype.h
*** std_cwctype.h	2002/03/23 03:18:58	1.4
--- std_cwctype.h	2002/03/27 04:07:42
***************
*** 41,48 ****
   *  contained in the namespace @c std.
   */
  
! #ifndef _CWCTYPE
! #define _CWCTYPE 1
  
  #pragma GCC system_header
  
--- 41,48 ----
   *  contained in the namespace @c std.
   */
  
! #ifndef _CPP_CWCTYPE
! #define _CPP_CWCTYPE 1
  
  #pragma GCC system_header
  



More information about the Gcc-patches mailing list