[svn-r5263]

Purpose:
    Bug fix
Description:
    For some unknown to myself reason I used 32-bit integer for INTEGER(HSIZE_T)
    on Solaris platforms when 64-bit integers are available for both C and Fortran.
Solution:
    Use long long type to describe h(s)size_t_f types
Platforms tested:
    Solaris 2.7 ans 2.6
This commit is contained in:
Elena Pourmal 2002-04-25 14:49:51 -05:00
parent 8ae9564dcc
commit c543c53a0d

View File

@ -165,8 +165,8 @@ Please check your Makefile.
#include <sys/stat.h>
#define DF_MT DFMT_SUN
typedef char *_fcd;
typedef int hsize_t_f;
typedef int hssize_t_f;
typedef long long hsize_t_f;
typedef long long hssize_t_f;
typedef int size_t_f;
typedef int int_f;
typedef int hid_t_f;