%V 0
%I mal Sun Jul 13 19:08:25 1980
a0
/*
 * predefined symbols
 * because this is static, it must be included
 * if it desired in more than one place, it should be
 * external and separately compiled
 */

static SYM defsym[] = {
	"define", CONTROL, DEFINE, NULL, NULL,
	"include", CONTROL, INCLUDE, NULL, NULL,
	"ifdef", CONTROL, IFDEF, NULL, NULL,
	"endif", CONTROL, ENDIF, NULL, NULL,
	"ifndef", CONTROL, IFNDEF, NULL, NULL,
	"else", CONTROL, ELSE, NULL, NULL,
	"line", CONTROL, LINE, NULL, NULL,
	"if", CONTROL, IF, NULL, NULL,
	"undef", CONTROL, UNDEF, NULL, NULL,
	};
.
%E
