From 802e129fd7b9c383e8fcad03caa051e0583c199f Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 25 Jun 2009 17:02:59 +0000 Subject: Start of portability update: bitstring.h. --- compat.h | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'compat.h') 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 @@ -66,17 +66,23 @@ #endif #ifdef HAVE_QUEUE_H - #include +#include #else #include "compat/queue.h" #endif #ifdef HAVE_TREE_H - #include +#include #else #include "compat/tree.h" #endif +#ifdef HAVE_BITSTRING_H +#include +#else +#include "compat/bitstring.h" +#endif + #ifdef HAVE_POLL #include #else -- cgit