#include #include #define L_NULL ((LLIST *) NULL) #define lalloc() ((LLIST *)malloc(sizeof(LLIST))) typedef struct link { int val; struct link *next; } LLIST;