Deleted Added
full compact
438a439,449
> /*
> * compare two files list node (for sort)
> */
> int
> fsortcmp (p, q)
> const Node *p;
> const Node *q;
> {
> return (strcmp (p->key, q->key));
> }
>