COMPAT_SUNOS requires the 1.3 sigreturn code, so include it

even if COMPAT_13 isn't defined.
This commit is contained in:
fredette 2001-11-26 21:10:32 +00:00
parent 96316bebb6
commit 7bed926c6e
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: sigreturn.s,v 1.5 1999/11/10 00:01:32 thorpej Exp $ */
/* $NetBSD: sigreturn.s,v 1.6 2001/11/26 21:10:32 fredette Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -86,7 +86,7 @@ Lsigr1:
movl %sp@,%sp | and our SP
jra _ASM_LABEL(rei) | all done
#ifdef COMPAT_13
#if defined(COMPAT_13) || defined(COMPAT_SUNOS)
/*
* Pull in the NetBSD 1.3 sigreturn stub.
*/

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap_subr.s,v 1.6 1999/11/10 00:01:32 thorpej Exp $ */
/* $NetBSD: trap_subr.s,v 1.7 2001/11/26 21:10:32 fredette Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -96,7 +96,7 @@ _ASM_LABEL(faultstkadjnotrap2):
movl %sp@,%sp | and our SP
jra _ASM_LABEL(rei) | all done
#ifdef COMPAT_13
#if defined(COMPAT_13) || defined(COMPAT_SUNOS)
/*
* Trap 1 - compat_13_sigreturn13
*/