diff options
author | Oliver Korpilla <Oliver.Korpilla@gmx.de> | 2005-05-27 12:52:55 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-28 11:13:59 -0700 |
commit | c5924b7d97430657fa07ebf1a208c7e8cf135ef3 (patch) | |
tree | deb32e50dbc4bae34cc3295aa1720bf81d6d1294 /arch/x86_64 | |
parent | dcefb396c2af4d52fba48dc58b4021794b042046 (diff) | |
download | linux-c5924b7d97430657fa07ebf1a208c7e8cf135ef3.tar.bz2 |
[PATCH] x86_64: signal.c build fix
For unspecified reasons, arch/x86_64/kernel/signal.c apparently needs
ia32_unistd.h.
Cc: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64')
-rw-r--r-- | arch/x86_64/kernel/signal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/signal.c b/arch/x86_64/kernel/signal.c index 3fdcdba0fec5..429c0269dc4e 100644 --- a/arch/x86_64/kernel/signal.c +++ b/arch/x86_64/kernel/signal.c @@ -28,6 +28,7 @@ #include <asm/uaccess.h> #include <asm/i387.h> #include <asm/proto.h> +#include <asm/ia32_unistd.h> /* #define DEBUG_SIG 1 */ |