From 499d5feba7beef63acfccccba3675bd915b79b82 Mon Sep 17 00:00:00 2001 From: ellson Date: Thu, 26 Feb 2009 15:04:26 +0000 Subject: [PATCH] responding to Bug #1582 - not all systems have stdint.h !!!! (what year is this???) --- lib/rbtree/misc.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/lib/rbtree/misc.h b/lib/rbtree/misc.h index 4b20e91a9..dd2e0beea 100755 --- a/lib/rbtree/misc.h +++ b/lib/rbtree/misc.h @@ -1,6 +1,16 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include -#include + +#ifdef HAVE_STDINT_H +#include +#endif +#ifdef HAVE_INTTYPES_H +#include +#endif #ifndef INC_E_MISC_ #define INC_E_MISC_ -- 2.40.0