Changeset c55dd58 in mainline for kernel/arch/ia32/include/byteorder.h
- Timestamp:
- 2006-11-30T15:37:16Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8c19cf28
- Parents:
- 058b021
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/include/byteorder.h
r058b021 rc55dd58 36 36 #define KERN_ia32_BYTEORDER_H_ 37 37 38 #include <byteorder.h> 39 38 40 /* IA-32 is little-endian */ 39 #define u native_t_le2host(n) (n)41 #define uint32_t_le2host(n) (n) 40 42 #define uint64_t_le2host(n) (n) 43 44 #define uint32_t_be2host(n) uint64_t_byteorder_swap(n) 45 #define uint64_t_be2host(n) uint32_t_byteorder_swap(n) 41 46 42 47 #endif
Note:
See TracChangeset
for help on using the changeset viewer.