add comment that TOUR does not fully represent current shell
[unix-history] / usr / src / bin / sh / alias.h
#define ALIASINUSE 1
struct alias {
struct alias *next;
char *name;
char *val;
int flag;
};
struct alias *lookupalias();