]> granicus.if.org Git - graphviz/commitdiff
responding to Bug #1582 - not all systems have stdint.h !!!! (what year is this???)
authorellson <devnull@localhost>
Thu, 26 Feb 2009 15:04:26 +0000 (15:04 +0000)
committerellson <devnull@localhost>
Thu, 26 Feb 2009 15:04:26 +0000 (15:04 +0000)
plugin/gs/gvloadimage_gs.c

index f4d4b180fe4a5523bfa706a4bc85b95ebd7160e6..e96b7bb0348abf03b783fca587be36c97b7a56e7 100644 (file)
 #endif
 
 #include <stdlib.h>
+#ifdef HAVE_STDINT_H
 #include <stdint.h>
+#endif
+#ifdef HAVE_INTTYPES_H
+#include <inttypes.h>
+#endif
 #include <sys/stat.h>
 
 #include "gvplugin_loadimage.h"