omos-tcnj2024/sys/memory.c

7 lines
80 B
C
Raw Normal View History

2024-02-18 00:18:23 +01:00
#include <memory.h>
2024-02-17 23:43:23 +01:00
struct linkedlist {
u32 node;
linkedlist *next;
2024-02-18 00:18:23 +01:00
};