diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-04-29 22:00:32 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-04-29 22:00:32 (GMT) |
commit | 1b7ae2a5b729ce09209b36a47dd80a74b8cdadbc (patch) | |
tree | 73b84bc0f8c5cb70c38c7589bfe3b49d1728fd32 /fortran | |
parent | 8f4b37accf49681ff657bcd4496f3bd023895141 (diff) | |
download | hdf5-1b7ae2a5b729ce09209b36a47dd80a74b8cdadbc.zip hdf5-1b7ae2a5b729ce09209b36a47dd80a74b8cdadbc.tar.gz hdf5-1b7ae2a5b729ce09209b36a47dd80a74b8cdadbc.tar.bz2 |
[svn-r10701]
Purpose:
Bug fix
Description:
Some platforms (Windows) don't have the long long type, which causes automatic
Fortran type matching to fail.
A solution is to use HDF5's long_long type.
Solution:
Changed H5match_types.c to use long_long type. Moved definition
of long_long out of H5private.h and into H5public.h.
Platforms tested:
mir, copper, pommier
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/src/H5match_types.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fortran/src/H5match_types.c b/fortran/src/H5match_types.c index 47164c7..6a4a930 100644 --- a/fortran/src/H5match_types.c +++ b/fortran/src/H5match_types.c @@ -37,7 +37,9 @@ void initCfile() \#ifndef _H5f90i_gen_H\n\ \#define _H5f90i_gen_H\n\ \n\ -/* This file is automatically generated by H5match_types.c at build time. */\n\n"); +/* This file is automatically generated by H5match_types.c at build time. */\n\ +\n\ +#include \"H5public.h\"\n\n"); } void initFfile() |