diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2011-02-09 14:53:22 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2011-02-09 14:53:22 (GMT) |
commit | eedb56bf5216d9fee23b9eaf2a385569096f383a (patch) | |
tree | fe2c0a61235264544a672f89ef718e15147c194f | |
parent | 333988addd6e273a31a1cff4acc70011f55310a4 (diff) | |
download | hdf5-eedb56bf5216d9fee23b9eaf2a385569096f383a.zip hdf5-eedb56bf5216d9fee23b9eaf2a385569096f383a.tar.gz hdf5-eedb56bf5216d9fee23b9eaf2a385569096f383a.tar.bz2 |
[svn-r20071] Description:
Bring r20070 from trunk to 1.8 branch:
Switch order of system includes, to correct error on FreeBSD machines.
Tested on:
FreeBSD/32 6.3 (duty) w/debug
-rw-r--r-- | tools/lib/h5diff_array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5diff_array.c b/tools/lib/h5diff_array.c index 1c2cfa9..66cd580 100644 --- a/tools/lib/h5diff_array.c +++ b/tools/lib/h5diff_array.c @@ -14,8 +14,8 @@ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include <math.h> -#include <sys/timeb.h> #include <time.h> +#include <sys/timeb.h> #include "H5private.h" #include "h5tools.h" |