aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@redhat.com>2001-06-09 04:24:10 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2001-06-09 04:24:10 +0000
commit7ae4a70a1ca0cab7592ba523c1f08c9e20f5fc69 (patch)
tree02fc0e145ec917bce9a81f453ffa24724996ee3e
parentdbe0297bc6f0555ecb02d67f03226652c4a4f01f (diff)
downloadgcc-7ae4a70a1ca0cab7592ba523c1f08c9e20f5fc69.zip
gcc-7ae4a70a1ca0cab7592ba523c1f08c9e20f5fc69.tar.gz
gcc-7ae4a70a1ca0cab7592ba523c1f08c9e20f5fc69.tar.bz2
std_cstdlib.h: Remove _Exit, strtof injections.
2001-06-08 Benjamin Kosnik <bkoz@redhat.com> * include/c_std/bits/std_cstdlib.h: Remove _Exit, strtof injections. From-SVN: r43069
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/include/c_std/bits/std_cstdlib.h8
2 files changed, 8 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index de33521..94fde5a 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,9 @@
2001-06-08 Benjamin Kosnik <bkoz@redhat.com>
+ * include/c_std/bits/std_cstdlib.h: Remove _Exit, strtof injections.
+
+2001-06-08 Benjamin Kosnik <bkoz@redhat.com>
+
libstdc++/2767
libstdc++/2989
libstdc++/2992
diff --git a/libstdc++-v3/include/c_std/bits/std_cstdlib.h b/libstdc++-v3/include/c_std/bits/std_cstdlib.h
index 3577f74..2149818 100644
--- a/libstdc++-v3/include/c_std/bits/std_cstdlib.h
+++ b/libstdc++-v3/include/c_std/bits/std_cstdlib.h
@@ -44,7 +44,7 @@
#undef atoi
#undef atol
#undef strtod
-#undef strtof
+//#undef strtof
#undef strtol
#undef strtoul
#undef rand
@@ -56,7 +56,7 @@
#undef abort
#undef atexit
#undef exit
-#undef _Exit
+//#undef _Exit
#undef getenv
#undef system
#undef bsearch
@@ -88,7 +88,7 @@ namespace std
using ::atoi;
using ::atol;
using ::strtod;
- using ::strtof;
+ // using ::strtof;
using ::strtol;
using ::strtoul;
using ::rand;
@@ -100,7 +100,7 @@ namespace std
using ::abort;
using ::atexit;
using ::exit;
- using ::_Exit;
+ // using ::_Exit;
using ::getenv;
using ::system;
using ::bsearch;