reduce dependence on ByteOrder.h by removing B_HOST_IS_BENDIAN and using BYTE_ORDER instead

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4197 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty 2003-08-02 06:03:20 +00:00
parent b5dc136f9a
commit 4a53d0ba81
1 changed files with 4 additions and 4 deletions

View File

@ -14,10 +14,10 @@
#define IPVERSION 4
struct ip {
#if B_HOST_IS_BENDIAN
#if BYTE_ORDER == BIG_ENDIAN
uint8 ip_v:4;
uint8 ip_hl:4;
#else
#elif BYTE_ORDER == LITTLE_ENDIAN
uint8 ip_hl:4;
uint8 ip_v:4;
#endif
@ -73,10 +73,10 @@ struct ip_timestamp {
uint8 ipt_code;/* IPOPT_TS */
uint8 ipt_len;/* size of structure (variable) */
uint8 ipt_ptr;/* index of current entry */
#if B_HOST_IS_BENDIAN
#if BYTE_ORDER == BIG_ENDIAN
uint8 ipt_oflw:4,
ipt_flg:4;
#else
#elif BYTE_ORDER == LITTLE_ENDIAN
uint8 ipt_flg:4,
ipt_oflw:4;
#endif