1 #include "defs.h"
2 #include "ptrace.h"
3 #include "nsig.h"
4 #include "regs.h"
5 
6 #if defined HAVE_ASM_SIGCONTEXT_H && !defined HAVE_STRUCT_SIGCONTEXT
7 # include <asm/sigcontext.h>
8 #endif
9 
10 #include "arch_sigreturn.c"
11 
SYS_FUNC(sigreturn)12 SYS_FUNC(sigreturn)
13 {
14 	arch_sigreturn(tcp);
15 
16 	return RVAL_DECODED;
17 }
18