Platform compatibility fix.

This commit is contained in:
ehofman
2005-09-22 13:43:09 +00:00
parent 832e821919
commit 5eb380e103

View File

@@ -4,8 +4,8 @@
int main()
{
uint16_t sui16, ui16 = 0x0123;
uint32_t sui32, ui32 = 0x01234567;
unsigned short sui16, ui16 = 0x0123;
unsigned int sui32, ui32 = 0x01234567;
uint64_t sui64, ui64 = 0x0123456789ABCDEFLL;
sui16 = ui16; sgEndianSwap(&sui16);