[2.6 patch] i386 asm-offsets.c: workaround for a -Wmissing-prototypes warning

From: Adrian Bunk
Date: Wed Feb 21 2007 - 06:57:48 EST


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@xxxxxxxxx>

---
--- 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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/