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