summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/pause.c
diff options
context:
space:
mode:
authorjfb <jfb@openbsd.org>2004-05-18 02:05:52 +0000
committerjfb <jfb@openbsd.org>2004-05-18 02:05:52 +0000
commit73b3e3c43784cb5fd04439d34c7436bbf85871db (patch)
tree71c634a881a5350ce76151ea76da19a38936af3a /lib/libc/gen/pause.c
parentsync, libiberty bump, binutils changes (non-split info pages, mmalloc gone) (diff)
downloadwireguard-openbsd-73b3e3c43784cb5fd04439d34c7436bbf85871db.tar.xz
wireguard-openbsd-73b3e3c43784cb5fd04439d34c7436bbf85871db.zip
ansify function definitions and zap some `register'
ok millert@
Diffstat (limited to 'lib/libc/gen/pause.c')
-rw-r--r--lib/libc/gen/pause.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/pause.c b/lib/libc/gen/pause.c
index 60167039936..4db649bb4b0 100644
--- a/lib/libc/gen/pause.c
+++ b/lib/libc/gen/pause.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pause.c,v 1.4 2003/06/25 21:15:04 deraadt Exp $ */
+/* $OpenBSD: pause.c,v 1.5 2004/05/18 02:05:52 jfb Exp $ */
/*
* Written by Todd C. Miller <Todd.Miller@courtesan.com>
@@ -6,7 +6,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static const char rcsid[] = "$OpenBSD: pause.c,v 1.4 2003/06/25 21:15:04 deraadt Exp $";
+static const char rcsid[] = "$OpenBSD: pause.c,v 1.5 2004/05/18 02:05:52 jfb Exp $";
#endif /* LIBC_SCCS and not lint */
#include <signal.h>
@@ -16,7 +16,7 @@ static const char rcsid[] = "$OpenBSD: pause.c,v 1.4 2003/06/25 21:15:04 deraadt
* Backwards compatible pause(3).
*/
int
-pause()
+pause(void)
{
sigset_t mask;