This commit is contained in:
Hongze Cheng 2021-12-14 10:50:16 +08:00
parent 79006358d7
commit 14ae798fbd
1 changed files with 2 additions and 2 deletions

View File

@ -58,8 +58,8 @@ extern "C" {
// Double linked list
#define TD_DLIST_NODE(TYPE) \
struct { \
TYPE *dl_prev_; \
TYPE *dl_next_; \
struct TYPE *dl_prev_; \
struct TYPE *dl_next_; \
}
#define TD_DLIST(TYPE) \