diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1998-11-19 20:10:17 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1998-11-19 20:10:17 (GMT) |
commit | a482bd8e5be933d58889d644a4a1a2f5f4dfd064 (patch) | |
tree | 9d37a03dc55cf70b6841a7ea99d7b42e0545c4a6 /test | |
parent | b31cc0e3abeb5b8dd93d74d384a0f2738230a1c2 (diff) | |
download | hdf5-a482bd8e5be933d58889d644a4a1a2f5f4dfd064.zip hdf5-a482bd8e5be933d58889d644a4a1a2f5f4dfd064.tar.gz hdf5-a482bd8e5be933d58889d644a4a1a2f5f4dfd064.tar.bz2 |
[svn-r933] moved the include for io.h into a block surrounded by HAVE_IO_H
Diffstat (limited to 'test')
-rw-r--r-- | test/external.c | 3 | ||||
-rw-r--r-- | test/overhead.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/test/external.c b/test/external.c index 5d3e253..a6ecc16 100644 --- a/test/external.c +++ b/test/external.c @@ -18,6 +18,9 @@ # include <stdio.h> # include <stdlib.h> # include <string.h> +#endif + +#ifdef HAVE_IO_H # include <io.h> #endif diff --git a/test/overhead.c b/test/overhead.c index ec3b877..13a6c7d 100644 --- a/test/overhead.c +++ b/test/overhead.c @@ -18,6 +18,9 @@ # include <stdlib.h> # include <sys/stat.h> # include <string.h> +#endif + +#ifdef HAVE_IO_H # include <io.h> #endif |