Add prototype for linux_sigprocmask1().

This commit is contained in:
erh 1998-10-07 22:13:39 +00:00
parent ddbb7b3349
commit 3bd73b1ef1
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: linux_signal.h,v 1.8 1998/10/04 00:02:43 fvdl Exp $ */ /* $NetBSD: linux_signal.h,v 1.9 1998/10/07 22:13:39 erh Exp $ */
/*- /*-
* Copyright (c) 1995, 1998 The NetBSD Foundation, Inc. * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
@ -51,6 +51,8 @@
extern int native_to_linux_sig[]; extern int native_to_linux_sig[];
extern int linux_to_native_sig[]; extern int linux_to_native_sig[];
__BEGIN_DECLS __BEGIN_DECLS
int linux_sigprocmask1 __P((struct proc *, int, linux_old_sigset_t *,
linux_old_sigset_t *));
void linux_old_to_native_sigset __P((const linux_old_sigset_t *, sigset_t *)); void linux_old_to_native_sigset __P((const linux_old_sigset_t *, sigset_t *));
void native_to_linux_old_sigset __P((const sigset_t *, linux_old_sigset_t *)); void native_to_linux_old_sigset __P((const sigset_t *, linux_old_sigset_t *));