aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c-tree.h')
-rw-r--r--gcc/c-tree.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/gcc/c-tree.h b/gcc/c-tree.h
index ef8318f..1450b30 100644
--- a/gcc/c-tree.h
+++ b/gcc/c-tree.h
@@ -149,8 +149,15 @@ struct lang_type
an explicit loop over that iterator. */
#define ITERATOR_BOUND_P(NODE) ((NODE)->common.readonly_flag)
-extern int maybe_objc_comptypes PROTO((tree, tree));
+/* in c-lang.c and objc-act.c */
+extern tree lookup_interface PROTO((tree));
+extern tree is_class_name PROTO((tree));
+extern void maybe_objc_check_decl PROTO((tree));
+extern int maybe_objc_comptypes PROTO((tree, tree, int));
extern tree maybe_building_objc_message_expr PROTO((void));
+extern tree maybe_objc_method_name PROTO((tree));
+extern int recognize_objc_keyword PROTO((void));
+extern tree build_objc_string PROTO((int, char *));
/* in c-aux-info.c */
extern void gen_aux_info_record PROTO((tree, int, int, int));
@@ -168,7 +175,6 @@ extern void constant_expression_warning PROTO((tree));
extern void decl_attributes PROTO((tree, tree));
extern void declare_function_name PROTO((void));
extern tree convert_and_check PROTO((tree, tree));
-extern void constant_expression_warning PROTO((tree));
extern void overflow_warning PROTO((tree));
extern void unsigned_conversion_warning PROTO((tree, tree));
/* Read the rest of the current #-directive line. */
@@ -434,4 +440,8 @@ extern int (*comptypes_record_hook) ();
extern int system_header_p;
+/* Nonzero enables objc features. */
+
+extern int doing_objc_thang;
+
#endif /* not _C_TREE_H */