Changeset 3799f51
- Timestamp:
- 08/02/13 18:19:52 (9 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 7a529a9
- Parents:
- c04929c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/libtrace_int.h
rc04929c r3799f51 929 929 * @{ 930 930 */ 931 #if BYTE_ORDER ==BIG_ENDIAN931 #if __BYTE_ORDER == __BIG_ENDIAN 932 932 #define bswap_host_to_be64(num) ((uint64_t)(num)) 933 933 #define bswap_host_to_le64(num) byteswap64(num) … … 947 947 * attempt to optimise it 948 948 */ 949 #elif BYTE_ORDER ==LITTLE_ENDIAN949 #elif __BYTE_ORDER == __LITTLE_ENDIAN 950 950 #define bswap_host_to_be64(num) (byteswap64(num)) 951 951 #define bswap_host_to_le64(num) ((uint64_t)(num))
Note: See TracChangeset
for help on using the changeset viewer.