
typedef	struct	_EXE	{
	struct	_EXE	*next;
	char		*wild;
	char		*prog;
} EXEPTR;

#define	PROG_MAX	32

extern	EXEPTR	prog_tab[PROG_MAX];
