summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-04-29 22:00:32 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-04-29 22:00:32 (GMT)
commit1b7ae2a5b729ce09209b36a47dd80a74b8cdadbc (patch)
tree73b84bc0f8c5cb70c38c7589bfe3b49d1728fd32 /fortran
parent8f4b37accf49681ff657bcd4496f3bd023895141 (diff)
downloadhdf5-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.c4
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()