summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@linux-mips.org>2007-05-29 15:03:56 +0100
committerRalf Baechle <ralf@linux-mips.org>2007-07-04 15:53:15 +0100
commiteaf2b8dca47cc1d4ca7fd83f37604e0f5478b33a (patch)
tree868b6f82d74630e468bd076151279924f583536c /include
parentab012ebf9ebb5f3392e74c1666e7473b8567aeb0 (diff)
[MIPS] die(): Properly declare as non-returning
This marks the declaration of die() correctly, removing "control reaches end of non-void function" warnings from non-void functions that die() at the end. Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include')
-rw-r--r--include/asm-mips/ptrace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mips/ptrace.h b/include/asm-mips/ptrace.h
index 1906938285c0..85b44366343a 100644
--- a/include/asm-mips/ptrace.h
+++ b/include/asm-mips/ptrace.h
@@ -86,7 +86,7 @@ struct pt_regs {
extern asmlinkage void do_syscall_trace(struct pt_regs *regs, int entryexit);
-extern NORET_TYPE void die(const char *, struct pt_regs *);
+extern NORET_TYPE void die(const char *, struct pt_regs *) ATTRIB_NORET;
static inline void die_if_kernel(const char *str, struct pt_regs *regs)
{