linked list

This commit is contained in:
MonkeyGG2 2024-02-17 17:43:23 -05:00
parent e83e85cf22
commit c8ab919c11

4
sys/linkedlist.c Normal file
View File

@ -0,0 +1,4 @@
struct linkedlist {
u32 node;
linkedlist *next;
};