diff options
author | Jerome Soumagne <jsoumagne@hdfgroup.org> | 2015-10-20 06:28:17 (GMT) |
---|---|---|
committer | Jerome Soumagne <jsoumagne@hdfgroup.org> | 2015-10-20 06:28:17 (GMT) |
commit | 2094d8646199996f655bb5f56f142216bc2abfcf (patch) | |
tree | 2af40c4dddb881f62de5d61643e94932821ae29d /tools | |
parent | 2af0d74216f1cdb0608a535a74c2a318a60b6e26 (diff) | |
download | hdf5-2094d8646199996f655bb5f56f142216bc2abfcf.zip hdf5-2094d8646199996f655bb5f56f142216bc2abfcf.tar.gz hdf5-2094d8646199996f655bb5f56f142216bc2abfcf.tar.bz2 |
[svn-r28138] Add first support for _Bool and make hbool_t a "real" _Bool if available
Fix tests accordingly and fix misuse of hbool_t in various places
Fix initialization of H5Pgcpl/ocpl structs in property decoding routines
Tested on:
Linux/32 (jam)
Linux/64 (platypus)
Linux/PPC64 (ostrich)
MacOSX/64 10.11
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perform/pio_standalone.h | 4 | ||||
-rw-r--r-- | tools/perform/sio_standalone.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/perform/pio_standalone.h b/tools/perform/pio_standalone.h index 584a057..762a564 100644 --- a/tools/perform/pio_standalone.h +++ b/tools/perform/pio_standalone.h @@ -105,10 +105,10 @@ typedef off_t h5_stat_size_t; * HDF Boolean type. */ #ifndef FALSE -# define FALSE 0 +# define FALSE false #endif #ifndef TRUE -# define TRUE 1 +# define TRUE true #endif diff --git a/tools/perform/sio_standalone.h b/tools/perform/sio_standalone.h index 8f52eba..547a9ee 100644 --- a/tools/perform/sio_standalone.h +++ b/tools/perform/sio_standalone.h @@ -471,10 +471,10 @@ extern char *strdup(const char *s); * HDF Boolean type. */ #ifndef FALSE -# define FALSE 0 +# define FALSE false #endif #ifndef TRUE -# define TRUE 1 +# define TRUE true #endif /** From h5test.h **/ |