From 5eb59e5be09cd16bb0796b55575aa92dfd22650a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 23 Aug 2006 05:19:42 +0000 Subject: [PATCH] r17741: tru64 uses inttypes.h not stdint.h. ain't standards wonderful? --- source/lib/ldb/include/includes.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/lib/ldb/include/includes.h b/source/lib/ldb/include/includes.h index 76870aca6da..31997d6008f 100644 --- a/source/lib/ldb/include/includes.h +++ b/source/lib/ldb/include/includes.h @@ -36,6 +36,9 @@ #ifdef HAVE_STDINT_H #include #endif +#ifdef HAVE_INTTYPES_H +#include +#endif #ifdef HAVE_DLFCN_H #include #endif