add comment that TOUR does not fully represent current shell
[unix-history] / usr / src / bin / sh / alias.h
CommitLineData
64b22c5b
MT
1#define ALIASINUSE 1
2
3struct alias {
4 struct alias *next;
5 char *name;
6 char *val;
7 int flag;
8};
9
10struct alias *lookupalias();