about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/abi-tag.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/abi-tag.h')
-rw-r--r--sysdeps/unix/sysv/linux/abi-tag.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/sysdeps/unix/sysv/linux/abi-tag.h b/sysdeps/unix/sysv/linux/abi-tag.h
deleted file mode 100644
index 6c71eece85..0000000000
--- a/sysdeps/unix/sysv/linux/abi-tag.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Define the GNU ABI tag for the Linux kernel we need.
-   The is a 4-byte quantity in native byte order:
-   the high byte is 0 to indicate Linux;
-   the low three bytes are the LINUX_VERSION_CODE for the earliest
-   compatible Linux kernel.  */
-
-#define ABI_LINUX_TAG	0
-
-#define ABI_LINUX_MAJOR	2
-#define ABI_LINUX_MINOR	0
-#define ABI_LINUX_PATCH	0
-
-/* Don't use `|' in this expression, it is a comment character in the
-   assembler.  */
-#define ABI_TAG ((ABI_LINUX_TAG << 24) +				      \
-		 (ABI_LINUX_MAJOR << 16) +				      \
-		 (ABI_LINUX_MINOR << 8) +				      \
-		 (ABI_LINUX_PATCH << 0))