* libsupc++/del_op.cc: Don't include cstdlib when !_GLIBCXX_HOSTED.

From-SVN: r94842
This commit is contained in:
Mike Stump 2005-02-10 19:05:34 +00:00 committed by Mike Stump
parent f5e2738c52
commit b77647dff8
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-02-09 Mike Stump <mrs@apple.com>
* libsupc++/del_op.cc: Don't include cstdlib when !_GLIBCXX_HOSTED.
2005-02-09 Janis Johnson <janis187@us.ibm.com>
* testsuite/ext/array_allocator/2.cc: XFAIL for powerpc*-*-linux*.

View File

@ -29,7 +29,9 @@
// the GNU General Public License.
#include "new"
#if _GLIBCXX_HOSTED
#include <cstdlib>
#endif
#include <bits/c++config.h>
#if _GLIBCXX_HOSTED