diff options
author | 2005-11-21 00:07:28 +0000 | |
---|---|---|
committer | 2005-11-21 00:07:28 +0000 | |
commit | c6dc0e45ad684728c08bef2d7f5d9eef756145c5 (patch) | |
tree | 88213ede14c2bf81d73ae9dbdfd1982c2eac205a /sys-kernel/linux-headers/files | |
parent | Version bump #113111 by Tony Vroon. (diff) | |
download | gentoo-2-c6dc0e45ad684728c08bef2d7f5d9eef756145c5.tar.gz gentoo-2-c6dc0e45ad684728c08bef2d7f5d9eef756145c5.tar.bz2 gentoo-2-c6dc0e45ad684728c08bef2d7f5d9eef756145c5.zip |
Add the unistd.h errno.h fix from 2.6 headers.
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'sys-kernel/linux-headers/files')
-rw-r--r-- | sys-kernel/linux-headers/files/linux-headers-2.4-errno-in-unistd.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys-kernel/linux-headers/files/linux-headers-2.4-errno-in-unistd.patch b/sys-kernel/linux-headers/files/linux-headers-2.4-errno-in-unistd.patch new file mode 100644 index 000000000000..4995c5e5d9df --- /dev/null +++ b/sys-kernel/linux-headers/files/linux-headers-2.4-errno-in-unistd.patch @@ -0,0 +1,11 @@ +--- linux/include/linux/unistd.h ++++ linux/include/linux/unistd.h +@@ -1,7 +1,7 @@ + #ifndef _LINUX_UNISTD_H_ + #define _LINUX_UNISTD_H_ + +-extern int errno; ++#include <errno.h> + + /* + * Include machine specific syscallX macros |