omos-tcnj2024/sys/linkedlist.c

4 lines
58 B
C
Raw Normal View History

2024-02-17 23:43:23 +01:00
struct linkedlist {
u32 node;
linkedlist *next;
};