15 {
16 __label__ fail_fapl, fail_file;
17 hid_t fapl, file, aspace, attr;
18
20 ret_val = EXIT_FAILURE;
21 goto fail_fapl;
22 }
23#if H5_VERSION_GE(1, 10, 0)
25#elif H5_VERSION_GE(1, 8, 0)
27#else
28#error Only HDF5 1.8.x and later supported.
29#endif
30 ret_val = EXIT_FAILURE;
31 goto fail_file;
32 }
34 ret_val = EXIT_FAILURE;
35 goto fail_file;
36 }
37
39fail_file:
41fail_fapl:;
42 }