omos-tcnj2024/sys/linkedlist.c
2024-02-17 17:43:23 -05:00

4 lines
58 B
C

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