Simple fix for build failure on DEC/OSF1.

Apparently this platform also requires inttypes.h rather than
stdint.h.

This should fix the bug reported here:

        https://bugzilla.mozilla.org/show_bug.cgi?id=331428
This commit is contained in:
Laxmi Harikumar 2006-04-10 12:04:01 -07:00 committed by Carl Worth
parent 08b109fb9a
commit baa3436e9d

View file

@ -81,7 +81,7 @@ SOFTWARE.
#if defined (__SVR4) && defined (__sun)
# include <sys/int_types.h>
#elif defined (__OpenBSD__) || defined (_AIX)
#elif defined (__OpenBSD__) || defined (_AIX) || defined (__osf__)
# include <inttypes.h>
#elif defined (_MSC_VER)
typedef __int8 int8_t;