summaryrefslogtreecommitdiffstats
path: root/test/tconfig.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2004-10-22 21:11:16 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2004-10-22 21:11:16 (GMT)
commit06a81051f0dd64024d940a4df995319b464c41d8 (patch)
treec6d074e0a40f89ce891179dbabcd184bee735b5c /test/tconfig.c
parentb4d39e7adb6d9c228625c9678192cf283a2ddc01 (diff)
downloadhdf5-06a81051f0dd64024d940a4df995319b464c41d8.zip
hdf5-06a81051f0dd64024d940a4df995319b464c41d8.tar.gz
hdf5-06a81051f0dd64024d940a4df995319b464c41d8.tar.bz2
[svn-r9450] Purpose:
"Improvement"? Description: Long double is a standard C89 type. Promoted it from a conditional tested type to an assumed supported type. Platforms tested: H5committested. Misc. update:
Diffstat (limited to 'test/tconfig.c')
-rw-r--r--test/tconfig.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/tconfig.c b/test/tconfig.c
index 9e2a792..5f1c246 100644
--- a/test/tconfig.c
+++ b/test/tconfig.c
@@ -120,12 +120,9 @@ test_config_ctypes(void)
vrfy_cint_type(long, unsigned long, H5_SIZEOF_LONG);
vrfy_ctype(float, H5_SIZEOF_FLOAT);
vrfy_ctype(double, H5_SIZEOF_DOUBLE);
-
- /* standard C99 basic types */
-#if H5_SIZEOF_LONG_DOUBLE > 0
vrfy_ctype(long double, H5_SIZEOF_LONG_DOUBLE);
-#endif
+ /* standard C99 basic types */
#if H5_SIZEOF_LONG_LONG > 0
vrfy_cint_type(long_long, unsigned long_long, H5_SIZEOF_LONG_LONG);
#endif