Messages in this thread Patch in this message |  | | Date | Wed, 21 Feb 2007 12:57:19 +0100 | From | Adrian Bunk <> | Subject | [2.6 patch] i386 asm-offsets.c: workaround for a -Wmissing-prototypes warning |
| |
This patch works around a warning with -Wmissing-prototypes in arch/i386/kernel/asm-offsets.c
The warning isn't gcc's fault - asm-offsets.c is simply a special file.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
--- --- linux-2.6.20-mm2/arch/i386/kernel/asm-offsets.c.old 2007-02-20 23:28:45.000000000 +0100 +++ linux-2.6.20-mm2/arch/i386/kernel/asm-offsets.c 2007-02-20 23:29:42.000000000 +0100 @@ -29,6 +29,9 @@ #define OFFSET(sym, str, mem) \ DEFINE(sym, offsetof(struct str, mem)); +/* workaround for a warning with -Wmissing-prototypes */ +void foo(void); + void foo(void) { OFFSET(SIGCONTEXT_eax, sigcontext, eax); - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |