12// GCC has alternative #pragma pack(N) syntax and old gcc version does not support pack(push, N), also any gcc version does not support it at some platform
13#if defined(__GNUC__)
14#pragma pack(1)
15#else
16#pragma pack(push, 1)
17#endif
18
19// Structures used to access raw DB2 data and required packing to portability
509// GCC has alternative #pragma pack(N) syntax and old gcc version does not support pack(push, N), also any gcc version does not support it at some platform