Fixing BeOS bustage - use uint32 instead of u_int32_t.

git-svn-id: svn://10.0.0.236/trunk@99306 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bryner%uiuc.edu
2001-07-16 06:04:25 +00:00
parent 2eca246a23
commit f43cf516d9

View File

@@ -57,11 +57,11 @@ typedef union {
double value;
struct {
#ifdef IS_LITTLE_ENDIAN
u_int32_t lsw;
u_int32_t msw;
uint32 lsw;
uint32 msw;
#else
u_int32_t msw;
u_int32_t lsw;
uint32 msw;
uint32 lsw;
#endif
} parts;
} js_ieee_double_shape_type;