Sync function prototypes; remove unsed variables.

This commit is contained in:
pk 1998-09-13 11:34:04 +00:00
parent ef7c8ebbe7
commit ba67f63901
2 changed files with 4 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: svr4_machdep.h,v 1.5 1998/09/05 15:28:08 christos Exp $ */
/* $NetBSD: svr4_machdep.h,v 1.6 1998/09/13 11:34:04 pk Exp $ */
/*-
* Copyright (c) 1994 The NetBSD Foundation, Inc.
@ -108,9 +108,9 @@ typedef struct {
struct svr4_ucontext;
void svr4_getcontext __P((struct proc *, struct svr4_ucontext *,
int, int));
sigset_t *));
int svr4_setcontext __P((struct proc *p, struct svr4_ucontext *));
void svr4_sendsig __P((sig_t, int, int, u_long));
void svr4_sendsig __P((sig_t, int, sigset_t *, u_long));
int svr4_trap __P((int, struct proc *));
#endif /* !_SPARC_SVR4_MACHDEP_H_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: svr4_machdep.c,v 1.29 1998/09/11 13:31:39 mycroft Exp $ */
/* $NetBSD: svr4_machdep.c,v 1.30 1998/09/13 11:34:05 pk Exp $ */
/*-
* Copyright (c) 1994 The NetBSD Foundation, Inc.
@ -232,7 +232,6 @@ svr4_setcontext(p, uc)
struct proc *p;
struct svr4_ucontext *uc;
{
struct sigacts *psp = p->p_sigacts;
register struct trapframe *tf;
svr4_greg_t *r = uc->uc_mcontext.greg;
sigset_t mask;