wm: teppich

ref: d1001457d857f4c8db216691fc2ecf18febe1912
dir: /libc/lladd.c/

View raw version
#include <u.h>
#include <err.h>
#include <mem.h>

#include <vfs.h>
int
lladd(ll_t *last, void *data)
{
	ll_t *temp;

	if(last->next != nil)
		return LL_ERR;

	temp = malloc(sizeof(ll_t*));
	
	temp->val = data;
	temp->next = nil;
	
	last->next = temp;
	return OK;
}