forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation: support glibc versions without htole macros
glibc 2.9 introduced the htole<16/32/64> macros, add them to tools/include to support older versions of glibc. Reported-by: Andrew Morton <[email protected]> Signed-off-by: Peter Foley <[email protected]> Signed-off-by: Randy Dunlap <[email protected]> Signed-off-by: Jiri Kosina <[email protected]>
- Loading branch information
Showing
5 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#ifndef _TOOLS_ENDIAN_H | ||
#define _TOOLS_ENDIAN_H | ||
|
||
#include <byteswap.h> | ||
|
||
#if __BYTE_ORDER == __LITTLE_ENDIAN | ||
|
||
#ifndef htole16 | ||
#define htole16(x) (x) | ||
#endif | ||
#ifndef htole32 | ||
#define htole32(x) (x) | ||
#endif | ||
#ifndef htole64 | ||
#define htole64(x) (x) | ||
#endif | ||
|
||
#else /* __BYTE_ORDER */ | ||
|
||
#ifndef htole16 | ||
#define htole16(x) __bswap_16(x) | ||
#endif | ||
#ifndef htole32 | ||
#define htole32(x) __bswap_32(x) | ||
#endif | ||
#ifndef htole64 | ||
#define htole64(x) __bswap_64(x) | ||
#endif | ||
|
||
#endif | ||
|
||
#endif /* _TOOLS_ENDIAN_H */ |