From: ellson Date: Thu, 26 Feb 2009 15:04:26 +0000 (+0000) Subject: responding to Bug #1582 - not all systems have stdint.h !!!! (what year is this???) X-Git-Tag: LAST_LIBGRAPH~32^2~2399 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=499d5feba7beef63acfccccba3675bd915b79b82;p=graphviz responding to Bug #1582 - not all systems have stdint.h !!!! (what year is this???) --- 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_