diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2011-02-09 14:48:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2011-02-09 14:48:42 (GMT) |
commit | 2fbca68293cc2fe4ba85ba7341ebc39a7ca97c5f (patch) | |
tree | f9f8e6457ca36e4cfaf1aa942d791ecae99ceaf6 | |
parent | 575469a6a7aef24eb79b7822c25f91043a4d4c2a (diff) | |
download | hdf5-2fbca68293cc2fe4ba85ba7341ebc39a7ca97c5f.zip hdf5-2fbca68293cc2fe4ba85ba7341ebc39a7ca97c5f.tar.gz hdf5-2fbca68293cc2fe4ba85ba7341ebc39a7ca97c5f.tar.bz2 |
[svn-r20070] Description:
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 c889282..9a609b5 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" |