Replace HAVE_* tests with just checking for (__solaris__)
[free-sw/xcb/libxcb] / src / xcb.h
index 639f583..f720469 100644 (file)
--- a/src/xcb.h
+++ b/src/xcb.h
 #define __XCB_H__
 #include <sys/types.h>
 
-/* TODO: check for stdint in config? (HAVE_STDINT) fallback? */
+#if defined(__solaris__)
+#include <inttypes.h>
+#else
 #include <stdint.h>
+#endif
 
 /* FIXME: these names conflict with those defined in Xmd.h. */
 #ifndef XMD_H