diff options
Diffstat (limited to 'perform')
-rw-r--r-- | perform/chunk.c | 4 | ||||
-rw-r--r-- | perform/overhead.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/perform/chunk.c b/perform/chunk.c index db2db14..71d3903 100644 --- a/perform/chunk.c +++ b/perform/chunk.c @@ -83,8 +83,8 @@ static hid_t fapl_g = -1; */ static size_t counter (unsigned UNUSED flags, size_t UNUSED cd_nelmts, - const unsigned * UNUSED cd_values, size_t nbytes, - size_t * UNUSED buf_size, void ** UNUSED buf) + const unsigned UNUSED *cd_values, size_t nbytes, + size_t UNUSED *buf_size, void UNUSED **buf) { nio_g += nbytes; return nbytes; diff --git a/perform/overhead.c b/perform/overhead.c index 264a3ce..641bc50 100644 --- a/perform/overhead.c +++ b/perform/overhead.c @@ -43,8 +43,12 @@ #endif #define FILE_NAME_1 "overhead.h5" +#ifndef FALSE #define FALSE 0 +#endif /* FALSE */ +#ifndef TRUE #define TRUE 1 +#endif /* TRUE */ typedef enum fill_t { FILL_ALL, |