diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-09-11 18:46:39 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-09-11 18:46:39 +0000 |
commit | 7f9010b2d3df3716c67fc00a0f1ec3c5fd127311 (patch) | |
tree | b9c200d8eadf8d6f7ad9d174cd0570699f7a199e /libc/sysdeps/linux/mips/pipe.S | |
parent | a22508d835ca1d7657d5ec41667e466e5e88fd9f (diff) |
Atsushi Nemoto writes:
The "make headers_install" in kernel 2.6.18 does not export
asm-mips/asm.h, asm-mips/regdef.h and asm-mips/sysmips.h. Do not use
them. We can use sys/asm.h and sys/regdef.h instead. The sysmips.h
part of this patch is came from glibc 2.4 code.
Diffstat (limited to 'libc/sysdeps/linux/mips/pipe.S')
-rw-r--r-- | libc/sysdeps/linux/mips/pipe.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/mips/pipe.S b/libc/sysdeps/linux/mips/pipe.S index 0f62ed2d3..1d9c2f889 100644 --- a/libc/sysdeps/linux/mips/pipe.S +++ b/libc/sysdeps/linux/mips/pipe.S @@ -8,9 +8,9 @@ /*see uClibc's sh/pipe.c and glibc-2.2.4's mips/pipe.S */ #include <features.h> -#include <asm/asm.h> +#include <sys/asm.h> #include <asm/unistd.h> -#include <asm/regdef.h> +#include <sys/regdef.h> .globl pipe .ent pipe, 0 |