Lines Matching defs:from
16 * may be used to endorse or promote products derived from this software
61 struct utmpentry *from, *ehead, *save, **nextp;
86 from = ehead;
88 while (from != NULL) {
90 (*nextp) && strcmp(from->name, (*nextp)->name) > 0;
93 save = from;
94 from = from->next;
102 for (from = ehead->next; from; from = from->next)
103 if (strcmp(save->name, from->name) != 0) {
104 (void)printf(" %s", from->name);
105 save = from;