diff options
author | 2013-06-21 06:08:50 +0000 | |
---|---|---|
committer | 2013-06-21 06:08:50 +0000 | |
commit | 7ae78ce5f791c6e49ee95e4a1dbdaf3a0c1185f3 (patch) | |
tree | f74e912bee195f5fc0ca5ab59a2002028685dc84 /lib/librthread/rthread_sig.c | |
parent | make this -Wsign-compare clean after time_t conversion (diff) | |
download | wireguard-openbsd-7ae78ce5f791c6e49ee95e4a1dbdaf3a0c1185f3.tar.xz wireguard-openbsd-7ae78ce5f791c6e49ee95e4a1dbdaf3a0c1185f3.zip |
Move the declaration of _thread_sys_sigprocmask() to rthread.h
Diffstat (limited to 'lib/librthread/rthread_sig.c')
-rw-r--r-- | lib/librthread/rthread_sig.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/librthread/rthread_sig.c b/lib/librthread/rthread_sig.c index 2b69c60a3e5..4983f0d6d52 100644 --- a/lib/librthread/rthread_sig.c +++ b/lib/librthread/rthread_sig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rthread_sig.c,v 1.14 2012/11/10 07:22:11 guenther Exp $ */ +/* $OpenBSD: rthread_sig.c,v 1.15 2013/06/21 06:08:50 guenther Exp $ */ /* * Copyright (c) 2005 Ted Unangst <tedu@openbsd.org> * All Rights Reserved. @@ -26,8 +26,6 @@ #include "rthread.h" -int _thread_sys_sigprocmask(int, const sigset_t *, sigset_t *); - int pthread_sigmask(int how, const sigset_t *set, sigset_t *oset) { |