This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[v3] build failure from automated checker.....
- To: gcc-patches at gcc dot gnu dot org
- Subject: [v3] build failure from automated checker.....
- From: Benjamin Kosnik <bkoz at redhat dot com>
- Date: Fri, 8 Jun 2001 21:11:58 -0700
this should fix the cygwin/newlib issues
branch/trunk
2001-06-08 Benjamin Kosnik <bkoz@redhat.com>
* include/c_std/bits/std_cstdlib.h: Remove _Exit, strtof injections.
Index: include/c_std/bits/std_cstdlib.h
===================================================================
RCS file: /cvs/gcc/gcc/libstdc++-v3/include/c_std/bits/std_cstdlib.h,v
retrieving revision 1.7.2.3
diff -c -p -r1.7.2.3 std_cstdlib.h
*** std_cstdlib.h 2001/06/08 23:33:14 1.7.2.3
--- std_cstdlib.h 2001/06/09 04:10:21
***************
*** 44,50 ****
#undef atoi
#undef atol
#undef strtod
! #undef strtof
#undef strtol
#undef strtoul
#undef rand
--- 44,50 ----
#undef atoi
#undef atol
#undef strtod
! //#undef strtof
#undef strtol
#undef strtoul
#undef rand
***************
*** 56,62 ****
#undef abort
#undef atexit
#undef exit
! #undef _Exit
#undef getenv
#undef system
#undef bsearch
--- 56,62 ----
#undef abort
#undef atexit
#undef exit
! //#undef _Exit
#undef getenv
#undef system
#undef bsearch
*************** namespace std
*** 88,94 ****
using ::atoi;
using ::atol;
using ::strtod;
! using ::strtof;
using ::strtol;
using ::strtoul;
using ::rand;
--- 88,94 ----
using ::atoi;
using ::atol;
using ::strtod;
! // using ::strtof;
using ::strtol;
using ::strtoul;
using ::rand;
*************** namespace std
*** 100,106 ****
using ::abort;
using ::atexit;
using ::exit;
! using ::_Exit;
using ::getenv;
using ::system;
using ::bsearch;
--- 100,106 ----
using ::abort;
using ::atexit;
using ::exit;
! // using ::_Exit;
using ::getenv;
using ::system;
using ::bsearch;