diff options
| author | matt <matt@NetBSD.org> | 2012-03-20 16:26:12 +0000 |
|---|---|---|
| committer | matt <matt@NetBSD.org> | 2012-03-20 16:26:12 +0000 |
| commit | c9c2c28799b5d51188e2ed6b6c44bfd086b3003f (patch) | |
| tree | 3205bb193f98d7ba3bf168a446a5a1cb3b05b160 /lib/libc/sys/sigwait.c | |
| parent | 043d89a797e69499d49a805a95869b718f9b5ed6 (diff) | |
Convert to C89 prototypes. Remove use of __P
Diffstat (limited to 'lib/libc/sys/sigwait.c')
| -rw-r--r-- | lib/libc/sys/sigwait.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/sys/sigwait.c b/lib/libc/sys/sigwait.c index fbdef15dd1f..10902ba747f 100644 --- a/lib/libc/sys/sigwait.c +++ b/lib/libc/sys/sigwait.c @@ -1,4 +1,4 @@ -/* $NetBSD: sigwait.c,v 1.4 2010/05/31 11:02:24 drochner Exp $ */ +/* $NetBSD: sigwait.c,v 1.5 2012/03/20 16:26:12 matt Exp $ */ /*- * Copyright (c) 2003 The NetBSD Foundation, Inc. @@ -31,7 +31,7 @@ #include <sys/cdefs.h> #if defined(LIBC_SCCS) && !defined(lint) -__RCSID("$NetBSD: sigwait.c,v 1.4 2010/05/31 11:02:24 drochner Exp $"); +__RCSID("$NetBSD: sigwait.c,v 1.5 2012/03/20 16:26:12 matt Exp $"); #endif /* LIBC_SCCS and not lint */ #include "namespace.h" @@ -45,7 +45,7 @@ __RCSID("$NetBSD: sigwait.c,v 1.4 2010/05/31 11:02:24 drochner Exp $"); __weak_alias(sigwait,_sigwait) #endif -int _sigwait __P((const sigset_t * __restrict, int * __restrict)); +int _sigwait(const sigset_t * __restrict, int * __restrict); /* * This is wrapper around sigtimedwait(2), providing sigwait() |
