diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-22 17:48:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-22 17:48:24 (GMT) |
commit | e5fc40662c6520edc50c7e68c96e24eb766972f2 (patch) | |
tree | c619f15e55b290c16fc082da15746864ba7c5b81 /perform/overhead.c | |
parent | 7527ed7d6f3d122e2b00e919c4a8d993b1e196be (diff) | |
download | hdf5-e5fc40662c6520edc50c7e68c96e24eb766972f2.zip hdf5-e5fc40662c6520edc50c7e68c96e24eb766972f2.tar.gz hdf5-e5fc40662c6520edc50c7e68c96e24eb766972f2.tar.bz2 |
[svn-r5219] Purpose:
Code cleanup
Description:
Clean up warnings from gcc 3.1
Platforms tested:
FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'perform/overhead.c')
-rw-r--r-- | perform/overhead.c | 4 |
1 files changed, 4 insertions, 0 deletions
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, |