Changeset 7f1c620 in mainline for arch/sparc64/include/byteorder.h
- Timestamp:
- 2006-07-04T17:17:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ffa3ef5
- Parents:
- 991779c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/include/byteorder.h
r991779c5 r7f1c620 39 39 #include <byteorder.h> 40 40 41 static inline __u64 __u64_le2host(__u64n)41 static inline uint64_t uint64_t_le2host(uint64_t n) 42 42 { 43 return __u64_byteorder_swap(n);43 return uint64_t_byteorder_swap(n); 44 44 } 45 45 46 static inline __native __native_le2host(__nativen)46 static inline unative_t unative_t_le2host(unative_t n) 47 47 { 48 return __u64_byteorder_swap(n);48 return uint64_t_byteorder_swap(n); 49 49 } 50 50
Note:
See TracChangeset
for help on using the changeset viewer.