diff options
author | 1996-04-21 23:38:17 +0000 | |
---|---|---|
committer | 1996-04-21 23:38:17 +0000 | |
commit | f3bae140e877f130f33051ddb228cb34a056c92b (patch) | |
tree | c5f519d1e41a8239f986cc5a6f4fb0b979e31e11 /lib/libc/gen/siginterrupt.c | |
parent | partial sync with netbsd 960418, more to come (diff) | |
download | wireguard-openbsd-f3bae140e877f130f33051ddb228cb34a056c92b.tar.xz wireguard-openbsd-f3bae140e877f130f33051ddb228cb34a056c92b.zip |
sync to netbsd 960418
Diffstat (limited to 'lib/libc/gen/siginterrupt.c')
-rw-r--r-- | lib/libc/gen/siginterrupt.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/gen/siginterrupt.c b/lib/libc/gen/siginterrupt.c index a8b0c25e730..cc075f49859 100644 --- a/lib/libc/gen/siginterrupt.c +++ b/lib/libc/gen/siginterrupt.c @@ -1,4 +1,5 @@ -/* $NetBSD: siginterrupt.c,v 1.6 1995/03/04 01:56:00 cgd Exp $ */ +/* $OpenBSD: siginterrupt.c,v 1.2 1996/04/21 23:39:27 deraadt Exp $ */ +/* $NetBSD: siginterrupt.c,v 1.7 1996/04/03 19:49:03 jtc Exp $ */ /* * Copyright (c) 1989, 1993 @@ -37,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)siginterrupt.c 8.1 (Berkeley) 6/4/93"; #else -static char rcsid[] = "$NetBSD: siginterrupt.c,v 1.6 1995/03/04 01:56:00 cgd Exp $"; +static char rcsid[] = "$NetBSD: siginterrupt.c,v 1.7 1996/04/03 19:49:03 jtc Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -47,6 +48,7 @@ static char rcsid[] = "$NetBSD: siginterrupt.c,v 1.6 1995/03/04 01:56:00 cgd Exp * Set signal state to prevent restart of system calls * after an instance of the indicated signal. */ +int siginterrupt(sig, flag) int sig, flag; { |