V8/usr/src/cmd/monk/cmd/monk/warn.h

Compare this file to the similar file:
Show the results in this format:

#define	WARN_ME		"/tmp/mesgs.monk."	/* messages for monk manager */
#define	WARN_DB		"/tmp/mesgs.db."	/* messages for db manager */

#define	PR_NOTHING	0000
#define	PR_FILENAME	0001
#define	PR_LINENUMBER	0002

#define	INCREMENT	1
#define	DECREMENT	0

struct file_info {
	short	line_number;
	char	*file_name;
};

struct filestack {
	char	*name;
	short	line_number;
	struct filestack	*previous;
};

extern struct filestack	*filestack;