diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2007-06-14 14:18:46 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2007-06-14 14:18:46 (GMT) |
commit | 9238d327a330f7e25404f580780b752f11bb0de8 (patch) | |
tree | c443f6105cc8133f83160c0f3c83f957fd3c558b /src/H5FDwindows.c | |
parent | d05df8434b2eb7f1282615f701dbf7cbf9f1ac6e (diff) | |
download | hdf5-9238d327a330f7e25404f580780b752f11bb0de8.zip hdf5-9238d327a330f7e25404f580780b752f11bb0de8.tar.gz hdf5-9238d327a330f7e25404f580780b752f11bb0de8.tar.bz2 |
[svn-r13865] Purpose: Adding a new macro, H5_HAVE_OFFSETOF.
Description: When the compiler has the __offsetof__ extension, the
H5_HAVE_OFFSETOF macro will be defined. When the compiler
does not have the extension, the macro will remain undefined.
Tested: kagiso
Diffstat (limited to 'src/H5FDwindows.c')
-rw-r--r-- | src/H5FDwindows.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDwindows.c b/src/H5FDwindows.c index 43afcef..1ea9aad 100644 --- a/src/H5FDwindows.c +++ b/src/H5FDwindows.c @@ -276,8 +276,8 @@ H5FD_windows_term(void) *
*-------------------------------------------------------------------------
*/
-herr_t
-H5Pset_fapl_windows(hid_t fapl_id)
+herr_t +H5Pset_fapl_windows(hid_t fapl_id) {
H5P_genplist_t *plist; /* Property list pointer */
herr_t ret_value;
|