Update.
[glibc.git] / sysdeps / unix / sysv / linux / abi-tag.h
blob166e6a12f63665af4a3c9ba4976652edb15125ff
1 /* Define the GNU ABI tag for the Linux kernel we need.
2 The is a 4-byte quantity in native byte order:
3 the high byte is 0 to indicate Linux;
4 the low three bytes are the LINUX_VERSION_CODE for the earliest
5 compatible Linux kernel. */
7 #define ABI_LINUX_TAG 0
9 #define ABI_LINUX_MAJOR 2
10 #define ABI_LINUX_MINOR 0
11 #define ABI_LINUX_PATCH 0
13 #define ABI_TAG ((ABI_LINUX_TAG << 24) | \
14 (ABI_LINUX_MAJOR << 16) | \
15 (ABI_LINUX_MINOR << 8) | \
16 (ABI_LINUX_PATCH << 0))