summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2002-10-22 06:38:44 +0000
committerPeter Johnson <peter@tortall.net>2002-10-22 06:38:44 +0000
commit326b77c80c86d989657786a10a002a831e505d9f (patch)
treef1efe1c985893c732e5e7fa80d58ca5313eb56e2 /util.h
parent50d92d758e66b361cd8cbfe1e3e098457add3f34 (diff)
downloadyasm-326b77c80c86d989657786a10a002a831e505d9f.tar.gz
Assume all sys/queue.h implementations are broken, and always use our local
one (more implementations are broken than not broken). svn path=/trunk/yasm/; revision=776
Diffstat (limited to 'util.h')
-rw-r--r--util.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/util.h b/util.h
index 6b9286af..02349777 100644
--- a/util.h
+++ b/util.h
@@ -97,11 +97,7 @@ int strncasecmp(const char *s1, const char *s2, size_t n);
# define toascii(c) ((c) & 0x7F)
#endif
-#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
-# include <sys/queue.h>
-#else
-# include "compat-queue.h"
-#endif
+#include "compat-queue.h"
#ifdef HAVE_SYS_CDEFS_H
# include <sys/cdefs.h>