1 // RUN: %clang_cc1 %s -fsyntax-only -verify
2 // expected-no-diagnostics
4 extern id objc_msgSend(id self, SEL op, ...);
12 extern __attribute__((visibility("default"))) id objc_msgSendSuper(struct objc_super *super, SEL op, ...)
13 __attribute__((availability(macosx,introduced=10.0)));
15 extern __attribute__((visibility("default"))) void objc_msgSendSuper_stret(struct objc_super *super, SEL op, ...)
16 __attribute__((availability(macosx,introduced=10.0)));
18 extern __attribute__((visibility("default"))) void objc_msgSend_stret(id self, SEL op, ...)
19 __attribute__((availability(macosx,introduced=10.0)));