omos-tcnj2024/sys/linkedlist.c

4 lines
58 B
C

struct linkedlist {
u32 node;
linkedlist *next;
};