Attempting to fix AIX bustage.

This commit is contained in:
jst%mozilla.jstenback.com 2004-07-12 20:21:02 +00:00
parent 6f433b5419
commit 5574339842

View File

@ -44,6 +44,9 @@
#if defined(WIN32) || defined(OS2)
typedef int int32_t;
typedef unsigned int uint32_t;
#elif defined(AIX)
typedef int int32_t;
typedef unsigned int uint32_t;
#else
#include <stdint.h>