Index: gcc/gcc/testsuite/objc/execute/exceptions/catchall-1.m |
diff --git a/gcc/gcc/testsuite/objc/execute/exceptions/catchall-1.m b/gcc/gcc/testsuite/objc/execute/exceptions/catchall-1.m |
index ac7d127a1a1b8d1c38952e7062d964b5de29fe21..01eff9257a33695c587e29632cef26d1487c5822 100644 |
--- a/gcc/gcc/testsuite/objc/execute/exceptions/catchall-1.m |
+++ b/gcc/gcc/testsuite/objc/execute/exceptions/catchall-1.m |
@@ -2,15 +2,15 @@ |
exceptions. */ |
/* Developed by Ziemowit Laski <zlaski@apple.com>. */ |
-#include <objc/Object.h> |
#include <stdio.h> |
+#include <stdlib.h> |
+#import "../../../objc-obj-c++-shared/Object1.h" |
/* The following is not required in actual user code; we include it |
here to check that the compiler generates an internal definition of |
_setjmp that is consistent with what <setjmp.h> provides. */ |
#include <setjmp.h> |
-extern void abort(void); |
#define CHECK_IF(expr) if(!(expr)) abort() |
@interface Frob: Object |