Pack structure only on AIX.
This commit is contained in:
parent
e98e3c4783
commit
d46eba06a7
|
@ -32,7 +32,11 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||
typedef union
|
||||
{
|
||||
unsigned short v;
|
||||
#if defined(_AIX)
|
||||
struct __attribute__((packed))
|
||||
#else
|
||||
struct
|
||||
#endif
|
||||
{
|
||||
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||
unsigned short s:1;
|
||||
|
@ -49,7 +53,11 @@ typedef union
|
|||
typedef union
|
||||
{
|
||||
float v;
|
||||
#if defined(_AIX)
|
||||
struct __attribute__((packed))
|
||||
#else
|
||||
struct
|
||||
#endif
|
||||
{
|
||||
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||
uint32_t s:1;
|
||||
|
|
Loading…
Reference in New Issue