ref: 10784c7106b0538ad853c421daf33c0d6597ff5d
dir: /libc/lldel.c/
#include <u.h>
#include <libc.h>
#include <err.h>
/* deletes the next entry in the list */
int
lldel(ll_t *ll)
{
ll_t *temp = ll->next;
ll->next = temp->next;
free(temp->val);
free(temp);
return OK;
}