/* On some versions of IRIX, the SGI C compiler comes with an <stdint.h>,
but
- in c99 mode, <inttypes.h> includes <stdint.h>,
- - in c89 mode, <stdint.h> spews warnings. <inttypes.h> defines only
- a subset of the types and macros that are defined in <stdint.h>.
+ - in c89 mode, <stdint.h> spews warnings and defines nothing.
+ <inttypes.h> defines only a subset of the types and macros that
+ <stdint.h> would define in c99 mode.
So we rely only on <inttypes.h> (included above). It means that in
c89 mode, we shadow the contents of warning-spewing <stdint.h>. */
# if !(defined(__sgi) && @HAVE_INTTYPES_H@ && !defined(__c99))