瀏覽代碼

Fix redefinition of SLIST_ENTRY on mingw winnt.h

TorbenD 7 年之前
父節點
當前提交
d1c640267e
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      deps/queue.h

+ 6 - 1
deps/queue.h

@@ -98,7 +98,12 @@ struct name {								\
  
 #define	SLIST_HEAD_INITIALIZER(head)					\
 	{ NULL }
- 
+
+/* Fix redefinition of SLIST_ENTRY on mingw winnt.h */
+# ifdef SLIST_ENTRY
+#  undef SLIST_ENTRY
+# endif
+
 #define SLIST_ENTRY(type)						\
 struct {								\
 	struct type *sle_next;	/* next element */			\