[svn-r5630]

Purpose:
    [is this a bug fix? feature? ...]
Description:
    [describe the bug, or describe the new feature, etc]
Solution:
    [details about the changes, algorithm, etc...]
    [Please as detail as you can since your own explanation is
    better than others guessing it from the code.]
Platforms tested:
    [machines you have tested the changed version.  This is absolute
    important.  Test it out on at least two or three different platforms
    such as Big-endian-32bit (SUN/IRIX), little-endian-32(LINUX) and
    64-bit (IRIX64/UNICOS/DEC-ALPHA) would be good.]
This commit is contained in:
Elena Pourmal 2002-06-13 17:44:32 -05:00
parent 9cee5851f3
commit 08e9bf64be
2 changed files with 6 additions and 0 deletions

View File

@ -464,3 +464,6 @@
/* Define to `long' if <sys/types.h> does not define. */
#undef ssize_t
/* Define if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H

View File

@ -42,6 +42,9 @@
#ifdef H5_HAVE_STDINT_H
# include <stdint.h> /*for C9x types */
#endif
#ifdef H5_HAVE_INTTYPES_H
# include <inttypes.h> /* For uint64_t on some platforms */
#endif
#ifdef H5_HAVE_STDDEF_H
# include <stddef.h>
#endif