]> git.lizzy.rs Git - dragonstd.git/blobdiff - list.h
Add flag_sub and flag_uns
[dragonstd.git] / list.h
diff --git a/list.h b/list.h
index d57f3781866135c6955301657bc8454e999e9fd8..e9f3b4b68a0f095fde1f2d8c923e3504c8f2e85d 100644 (file)
--- a/list.h
+++ b/list.h
@@ -9,6 +9,7 @@
 #define _DRAGONSTD_LIST_H_
 
 #include "bits/callback.h" // for Iterator, Comparator
+#include "bits/compare.h"  // for cmp_ref (not used in file)
 
 #define LIST_ITERATE(list, node) for (ListNode *node = (list)->fst; node != NULL; node = node->nxt)