ref: a3d9c8a50f2bd94224725e329b1d2482a7b0718d
dir: /libc/lldel.c/
#include <u.h>
#include <err.h>
#include <mem.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;
}