summaryrefslogtreecommitdiffstats
path: root/test/dtypes.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-11-11 15:58:12 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-11-11 15:58:12 (GMT)
commit04223a18f42f806646f8bb4a0ebfd819779d4ed4 (patch)
tree3a0321cb258b700639dd5486766585fc247001a8 /test/dtypes.c
parent47bef3253073160b2eddecf0fc7da00e142d7d52 (diff)
downloadhdf5-04223a18f42f806646f8bb4a0ebfd819779d4ed4.zip
hdf5-04223a18f42f806646f8bb4a0ebfd819779d4ed4.tar.gz
hdf5-04223a18f42f806646f8bb4a0ebfd819779d4ed4.tar.bz2
[svn-r2866] Purpose:
Code cleanup Description: Found more "Have_foo" usage and converted them to "H5_HAVE_foo" Platforms tested: FreeBSD 4.1.1 (hawkwind)
Diffstat (limited to 'test/dtypes.c')
-rw-r--r--test/dtypes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dtypes.c b/test/dtypes.c
index dc91425..6f5d439 100644
--- a/test/dtypes.c
+++ b/test/dtypes.c
@@ -89,7 +89,7 @@ static int num_opaque_conversions_g = 0;
* be allowed to continue (cf. Posix signals) so in order to recover from a
* SIGFPE we run tests that might generate one in a child process.
*/
-#if defined(HAVE_FORK) && defined(HAVE_WAITPID)
+#if defined(H5_HAVE_FORK) && defined(H5_HAVE_WAITPID)
# define HANDLE_SIGFPE
#endif
@@ -198,7 +198,7 @@ some_dummy_func(float x)
static void
generates_sigfpe(void)
{
-#if defined(HAVE_FORK) && defined(HAVE_WAITPID)
+#if defined(H5_HAVE_FORK) && defined(H5_HAVE_WAITPID)
pid_t pid;
int status;
size_t i, j;