diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-20 08:47:51 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-20 08:47:51 +0000 |
commit | 11975abb2c891e563dbed51a52c050ea0b05b8a4 (patch) | |
tree | d99ca21591a2528ac4546b64c8f703b0fc6dac34 /libc/signal/sigorset.c | |
parent | 6a9087f96b69f1b8cea5cee76a27784d2b131cd2 (diff) |
- remove old-style definitions. No object-code changes.
Diffstat (limited to 'libc/signal/sigorset.c')
-rw-r--r-- | libc/signal/sigorset.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libc/signal/sigorset.c b/libc/signal/sigorset.c index 7d7bf863d..3588cc482 100644 --- a/libc/signal/sigorset.c +++ b/libc/signal/sigorset.c @@ -22,11 +22,7 @@ #include <stddef.h> /* Combine sets LEFT and RIGHT by logical OR and place result in DEST. */ -int -sigorset (dest, left, right) - sigset_t *dest; - const sigset_t *left; - const sigset_t *right; +int sigorset (sigset_t *dest, const sigset_t *left, const sigset_t *right) { if (dest == NULL || left == NULL || right == NULL) { |