diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-13 09:47:04 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-13 09:47:04 +0000 |
commit | 3ab0557e5a3a81b5202334142326dd2e5edc5d28 (patch) | |
tree | fbc4cb8ae1dd73c49fdf4f898d0fb329e8551164 /libc/signal/sigset.c | |
parent | 80e6061ac5deca193759b979d34906bfc9b857ef (diff) |
A number of naming updates in preparation for adding in
proper threading. Most of this is from Stefan Soucek,
with additions and changes as needed from me.
Diffstat (limited to 'libc/signal/sigset.c')
-rw-r--r-- | libc/signal/sigset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/signal/sigset.c b/libc/signal/sigset.c index a5afa17f3..e0cda7b9f 100644 --- a/libc/signal/sigset.c +++ b/libc/signal/sigset.c @@ -41,7 +41,7 @@ __sighandler_t sigset (int sig, __sighandler_t disp) return SIG_ERR; /* Add the signal set to the current signal mask. */ - if (__sigprocmask (SIG_BLOCK, &set, NULL) < 0) + if (sigprocmask (SIG_BLOCK, &set, NULL) < 0) return SIG_ERR; return SIG_HOLD; |