diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2007-06-18 22:17:10 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2007-06-18 22:17:10 (GMT) |
commit | 054aabaea60e8373e5df7d72a27eae2597b6ab06 (patch) | |
tree | 0a80a9e007b14cc27496e55fcdf638808d58a0bd | |
parent | d9a56fa9ad4a8fc82eaf7ee91863488adb5a3146 (diff) | |
download | hdf5-054aabaea60e8373e5df7d72a27eae2597b6ab06.zip hdf5-054aabaea60e8373e5df7d72a27eae2597b6ab06.tar.gz hdf5-054aabaea60e8373e5df7d72a27eae2597b6ab06.tar.bz2 |
[svn-r13876] Purpose: Fix mingw errors
Description:
Removed sys/uio.h dependency, which was originally added to clean up compiler warnings. It is no longer needed, and needs to be removed to compile on mingw, which doesn't have this header.
Tested:
kagiso, duty, mingw
-rw-r--r-- | perform/zip_perf.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/perform/zip_perf.c b/perform/zip_perf.c index f5be6a0..c2ba1fc 100644 --- a/perform/zip_perf.c +++ b/perform/zip_perf.c @@ -29,7 +29,6 @@ #include <fcntl.h> #include <math.h> #include <sys/time.h> -#include <sys/uio.h> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> |