Tweaked a couple comments.

This commit is contained in:
Wayne Davison 2006-03-07 01:15:47 +00:00
parent 20aae107b8
commit 19305c6eaf
1 changed files with 2 additions and 2 deletions

View File

@ -131,7 +131,7 @@ insertlinklist(LinkList l, LinkNode where, LinkList x)
x->last = l->last;
}
/* Get top node in a linked list */
/* Pop the top node off a linked list and free it. */
/**/
mod_export void *
@ -152,7 +152,7 @@ getlinknode(LinkList list)
return dat;
}
/* Get top node in a linked list without freeing */
/* Pop the top node off a linked list without freeing it. */
/**/
mod_export void *