diff options
| author | Adrian Bunk <bunk@kernel.org> | 2007-10-17 02:29:25 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:55 -0400 |
| commit | 0732a552cb31a40db47f7d48e54847190e452da9 (patch) | |
| tree | 9ce130a249dd339556bcc804b0e6ad9600382985 | |
| parent | 827afdf093cce59bbbf9dc9f1c2eab86e2232b9e (diff) | |
kernel/sys_ni.c: add dummy sys_ni_syscall() prototype
kernel/sys_ni.c can't #include <linux/syscalls.h> due to cond_syscall(),
but let's tell gcc to not warn with -Wmissing-prototypes.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | kernel/sys_ni.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/sys_ni.c b/kernel/sys_ni.c index b0ec498a18d9..52c7a151e298 100644 --- a/kernel/sys_ni.c +++ b/kernel/sys_ni.c | |||
| @@ -4,6 +4,10 @@ | |||
| 4 | 4 | ||
| 5 | #include <asm/unistd.h> | 5 | #include <asm/unistd.h> |
| 6 | 6 | ||
| 7 | /* we can't #include <linux/syscalls.h> here, | ||
| 8 | but tell gcc to not warn with -Wmissing-prototypes */ | ||
| 9 | asmlinkage long sys_ni_syscall(void); | ||
| 10 | |||
| 7 | /* | 11 | /* |
| 8 | * Non-implemented system calls get redirected here. | 12 | * Non-implemented system calls get redirected here. |
| 9 | */ | 13 | */ |
