ack/lang/m2/comp/misc.h

22 lines
563 B
C
Raw Normal View History

/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*
* Author: Ceriel J.H. Jacobs
*/
1986-05-30 18:48:00 +00:00
/* M I S C E L L A N E O U S */
1994-06-24 14:02:31 +00:00
/* $Id$ */
1986-10-22 15:38:24 +00:00
#define is_anon_idf(x) ((x)->id_text[0] == '#')
#define id_not_declared(x) (not_declared("identifier", (x), ""))
1986-05-30 18:48:00 +00:00
/* Forward declarations. */
struct idf;
struct node;
void match_id(register struct idf *id1, struct idf *id2);
struct idf *gen_anon_idf(void);
void not_declared(char *what, struct node *id, char *where);