summaryrefslogtreecommitdiffstats
path: root/test/hyperslab.c
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-04-30 17:31:43 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-04-30 17:31:43 (GMT)
commit7d0a135c73a240a8e91f8187846d45a50ad4459f (patch)
tree03fd8989d26b4ae36e0743a2521d9a9298e39332 /test/hyperslab.c
parentcc2184b6efd25633b8a27cb23d57380e2f28a5b4 (diff)
downloadhdf5-7d0a135c73a240a8e91f8187846d45a50ad4459f.zip
hdf5-7d0a135c73a240a8e91f8187846d45a50ad4459f.tar.gz
hdf5-7d0a135c73a240a8e91f8187846d45a50ad4459f.tar.bz2
[svn-r1241] fixed some errors in my conditional compile statements from yesterday.
changed ifdef WIN32 && _HDF5USEDLL_ to if defined(WIN32) && defined(_HDF5USEDLL_) and did something similar for the not cases.
Diffstat (limited to 'test/hyperslab.c')
-rw-r--r--test/hyperslab.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/hyperslab.c b/test/hyperslab.c
index 85d4f3f..114336a 100644
--- a/test/hyperslab.c
+++ b/test/hyperslab.c
@@ -564,7 +564,7 @@ test_copy(int mode,
}
}
puts(" PASSED");
-#ifdef WIN32 && _HDF5USEDLL_
+#if defined(WIN32) && defined(_HDF5USEDLL_)
HDfree(src);
HDfree(dst);
#else
@@ -618,7 +618,7 @@ test_multifill(size_t nx)
fflush(stdout);
/* Initialize the source and destination */
-#ifndef WIN32 && _HDF5USEDLL_
+#if !defined(WIN32) && !defined(_HDF5USEDLL_)
src = H5MM_malloc(nx * sizeof(*src));
dst = H5MM_malloc(nx * sizeof(*dst));
#else
@@ -691,7 +691,7 @@ test_multifill(size_t nx)
}
puts(" PASSED");
-#ifndef WIN32 && _HDF5USEDLL_
+#if !defined(WIN32) && !defined(_HDF5USEDLL_)
H5MM_xfree(src);
H5MM_xfree(dst);
#else
@@ -780,7 +780,7 @@ test_endian(size_t nx)
}
puts(" PASSED");
-#ifdef WIN32 && _HDF5USEDLL_
+#if defined(WIN32) && defined(_HDF5USEDLL_)
HDfree(src);
HDfree(dst);
#else
@@ -887,7 +887,7 @@ test_transpose(size_t nx, size_t ny)
}
puts(" PASSED");
-#ifndef WIN32 && _HDF5USEDLL_
+#if !defined(WIN32) && !defined(_HDF5USEDLL_)
H5MM_xfree(src);
H5MM_xfree(dst);
#else