1: /* 2: * A linked list of files named by "link" directives is maintained using 3: * lfile structures. 4: */ 5: struct lfile { 6: char *lf_name; /* name of the file */ 7: struct lfile *lf_link; /* pointer to next file */ 8: }; 9: extern struct lfile *lfiles; 10: extern struct lfile *getlfile();