wm: teppich

ref: 27e3ce47b705e8c01f28c38089a3e8ad9a797698
dir: /libc/lldel.c/

View raw version
#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;
}