#define H5_GCC_DIAG_ON(x) H5_GCC_DIAG_PRAGMA(pop)
#define H5_GCC_DIAG_OFF(x)
#define H5_GCC_DIAG_ON(x)
#define H5_VERS_MAJOR 1 /* For major interface/format changes */
#define H5_VERS_MINOR 8 /* For minor interface/format changes */
#define H5_VERS_RELEASE 22 /* For tweaks, bug-fixes, or development */
/* Empty string for real releases. */
#define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \
/* macros for comparing the version */
#define H5_VERSION_GE(Maj,Min,Rel) \
(((H5_VERS_MAJOR==Maj) && (H5_VERS_MINOR==Min) && (H5_VERS_RELEASE>=Rel)) || \
((H5_VERS_MAJOR==Maj) && (H5_VERS_MINOR>Min)) || \