summaryrefslogtreecommitdiffstats
path: root/compat.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-06-25 17:02:59 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-06-25 17:02:59 +0000
commit802e129fd7b9c383e8fcad03caa051e0583c199f (patch)
tree0f7fa0e65b59bbd6e6eddf1610da3ff4048972e2 /compat.h
parentf1463ff3c11f7d84039bad43fe79c90ec6563b44 (diff)
Start of portability update: bitstring.h.
Diffstat (limited to 'compat.h')
-rw-r--r--compat.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/compat.h b/compat.h
index 5aa3d4f9..7c3691e0 100644
--- a/compat.h
+++ b/compat.h
@@ -1,4 +1,4 @@
-/* $Id: compat.h,v 1.1 2009-06-25 16:47:00 nicm Exp $ */
+/* $Id: compat.h,v 1.2 2009-06-25 17:02:59 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -66,17 +66,23 @@
#endif
#ifdef HAVE_QUEUE_H
- #include <sys/queue.h>
+#include <sys/queue.h>
#else
#include "compat/queue.h"
#endif
#ifdef HAVE_TREE_H
- #include <sys/tree.h>
+#include <sys/tree.h>
#else
#include "compat/tree.h"
#endif
+#ifdef HAVE_BITSTRING_H
+#include <bitstring.h>
+#else
+#include "compat/bitstring.h"
+#endif
+
#ifdef HAVE_POLL
#include <poll.h>
#else