diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/H5config.h.in | 3 | ||||
-rw-r--r-- | src/H5public.h | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index 762f327..0db6f6c 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -409,3 +409,6 @@ /* Define if you have the z library (-lz). */ #undef HAVE_LIBZ + +/* Define if you have the <inttypes.h> header file. */ +#undef HAVE_INTTYPES_H diff --git a/src/H5public.h b/src/H5public.h index e18de5a..f37c57f 100644 --- a/src/H5public.h +++ b/src/H5public.h @@ -38,6 +38,9 @@ #ifdef H5_HAVE_STDINT_H # include <stdint.h> /*for C9x types */ #endif +#ifdef H5_HAVE_INTTYPES_H +# include <inttypes.h> /* For uint64_t on some platforms */ +#endif #ifdef H5_HAVE_STDDEF_H # include <stddef.h> #endif @@ -56,7 +59,6 @@ #ifdef H5_HAVE_SRB /*for SRB I/O */ #include <srbClient.h> #endif - #include "H5api_adpt.h" /* Version numbers */ |