summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2001-11-15 17:47:40 +0000
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>2001-11-15 17:47:40 +0000
commit52703367b83f8fd235d20e17620f8b3f1a329c8a (patch)
tree7f0d0da52cc83019c74a7ee959668539c6c0f2a0
parentd9b504dce489aebad40595ef5181d6e012fd1c3a (diff)
downloadppe42-gcc-52703367b83f8fd235d20e17620f8b3f1a329c8a.tar.gz
ppe42-gcc-52703367b83f8fd235d20e17620f8b3f1a329c8a.zip
avoid includes
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47064 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/null2.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.other/null2.C b/gcc/testsuite/g++.old-deja/g++.other/null2.C
index 9dc5b130914..d7d2c8f2f33 100644
--- a/gcc/testsuite/g++.old-deja/g++.other/null2.C
+++ b/gcc/testsuite/g++.old-deja/g++.other/null2.C
@@ -1,6 +1,6 @@
// Based on a testcase by Eric Dumazet <Eric.Dumazet@COSMOSBAY.COM>
-#include <cstdlib>
+extern "C" void abort ();
const char * const foo = ""; // foo is not NULL
@@ -8,5 +8,5 @@ int main() {
if ((foo == 0) ? 0 : foo) // so this should evaluate to `foo'
return 0;
else
- std::abort();
+ abort();
}
OpenPOWER on IntegriCloud