From c5e3cabc98325adc9bd4cfa58e0bfdaaa986f545 Mon Sep 17 00:00:00 2001 From: guenther <> Date: Mon, 9 May 2016 23:55:52 +0000 Subject: [PATCH] Remove sigreturn declaration and the now-unused libc syscall stub --- src/include/signal.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/include/signal.h b/src/include/signal.h index 616c84a3..24978c90 100644 --- a/src/include/signal.h +++ b/src/include/signal.h @@ -1,4 +1,4 @@ -/* $OpenBSD: signal.h,v 1.24 2016/02/04 22:04:34 millert Exp $ */ +/* $OpenBSD: signal.h,v 1.25 2016/05/09 23:55:52 guenther Exp $ */ /* $NetBSD: signal.h,v 1.8 1996/02/29 00:04:57 jtc Exp $ */ /*- @@ -122,7 +122,6 @@ int sigaltstack(const struct sigaltstack *__restrict, struct sigaltstack *__restrict); #if __BSD_VISIBLE int sigblock(int); -int sigreturn(struct sigcontext *); int sigsetmask(int); int sigvec(int, struct sigvec *, struct sigvec *); int thrkill(pid_t _tid, int _signum, void *_tcb);