зеркало из https://github.com/mozilla/pjs.git
Fixing BeOS bustage - use uint32 instead of u_int32_t.
This commit is contained in:
Родитель
c716ac94c8
Коммит
4abe07430f
|
@ -57,11 +57,11 @@ typedef union {
|
||||||
double value;
|
double value;
|
||||||
struct {
|
struct {
|
||||||
#ifdef IS_LITTLE_ENDIAN
|
#ifdef IS_LITTLE_ENDIAN
|
||||||
u_int32_t lsw;
|
uint32 lsw;
|
||||||
u_int32_t msw;
|
uint32 msw;
|
||||||
#else
|
#else
|
||||||
u_int32_t msw;
|
uint32 msw;
|
||||||
u_int32_t lsw;
|
uint32 lsw;
|
||||||
#endif
|
#endif
|
||||||
} parts;
|
} parts;
|
||||||
} js_ieee_double_shape_type;
|
} js_ieee_double_shape_type;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче