summaryrefslogtreecommitdiff
path: root/libc/signal/sigintr.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-20 08:47:51 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-20 08:47:51 +0000
commit11975abb2c891e563dbed51a52c050ea0b05b8a4 (patch)
treed99ca21591a2528ac4546b64c8f703b0fc6dac34 /libc/signal/sigintr.c
parent6a9087f96b69f1b8cea5cee76a27784d2b131cd2 (diff)
- remove old-style definitions. No object-code changes.
Diffstat (limited to 'libc/signal/sigintr.c')
-rw-r--r--libc/signal/sigintr.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/libc/signal/sigintr.c b/libc/signal/sigintr.c
index a977e22de..43136379f 100644
--- a/libc/signal/sigintr.c
+++ b/libc/signal/sigintr.c
@@ -29,10 +29,7 @@ libc_hidden_proto(sigaction)
extern sigset_t _sigintr attribute_hidden; /* Defined in signal.c. */
#endif
-int
-siginterrupt (sig, interrupt)
- int sig;
- int interrupt;
+int siginterrupt (int sig, int interrupt)
{
#ifdef SA_RESTART
struct sigaction action;