mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
13 lines
280 B
C
13 lines
280 B
C
|
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_LINKEDLIST_H_
|
||
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_LINKEDLIST_H_
|
||
|
|
||
|
/**
|
||
|
* Dynamic linked list overlay.
|
||
|
*/
|
||
|
struct NtLinkedList {
|
||
|
struct NtLinkedList *Next;
|
||
|
struct NtLinkedList *Prev;
|
||
|
};
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_LINKEDLIST_H_ */
|