/*
 * 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 },
	{ "include", CONTROL, INCLUDE },
	{ "ifdef", CONTROL, IFDEF },
	{ "endif", CONTROL, ENDIF },
	{ "ifndef", CONTROL, IFNDEF },
	{ "else", CONTROL, ELSE },
	{ "line", CONTROL, LINE },
	{ "if", CONTROL, IF },
	{ "undef", CONTROL, UNDEF },
	};
