Makefile.in (YYOBJ): Add objc-exp.tab.o

objc-lang.h: Add multiple inclusion protection.
(start_msglist, add_msglist, end_msglist): Additional declarations.
This commit is contained in:
Adam Fedor 2003-03-25 02:18:55 +00:00
parent fe6c07ac60
commit 2cf6873cae
3 changed files with 19 additions and 0 deletions

View file

@ -19,6 +19,11 @@
Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
#if !defined(OBJC_LANG_H)
#define OBJC_LANG_H
struct stoken;
struct value;
struct block;
@ -51,3 +56,10 @@ extern char *find_imps (struct symtab *symtab, struct block *block,
unsigned int *nsym, unsigned int *ndebug);
extern struct value *value_nsstring (char *ptr, int len);
/* for parsing Objective C */
extern void start_msglist (void);
extern void add_msglist (struct stoken *str, int addcolon);
extern int end_msglist (void);
#endif