+/* OBJC_GC_UNAVAILABLE: unavailable with -fobjc-gc or -fobjc-gc-only */
+#if !defined(OBJC_GC_UNAVAILABLE)
+# if __OBJC_GC__
+# if __has_extension(attribute_unavailable_with_message)
+# define OBJC_GC_UNAVAILABLE __attribute__((unavailable("not available in garbage collecting mode")))
+# else
+# define OBJC_GC_UNAVAILABLE __attribute__((unavailable))
+# endif
+# else
+# define OBJC_GC_UNAVAILABLE
+# endif
+#endif
+