avoid includes

From-SVN: r47064
This commit is contained in:
Jason Merrill 2001-11-15 12:47:40 -05:00
parent 3b1a413282
commit 22f86c323f

View File

@ -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();
}