From 22f86c323f068216531f990631854d97a23fe3a5 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Thu, 15 Nov 2001 12:47:40 -0500 Subject: [PATCH] avoid includes From-SVN: r47064 --- gcc/testsuite/g++.old-deja/g++.other/null2.C | 4 ++-- 1 file 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 -#include +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(); } -- 2.30.2