diff options
Diffstat (limited to 'signal/sigstack.c')
-rw-r--r-- | signal/sigstack.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/signal/sigstack.c b/signal/sigstack.c index 4704a56151..81fe21456b 100644 --- a/signal/sigstack.c +++ b/signal/sigstack.c @@ -21,9 +21,7 @@ /* Run signals handlers on the stack specified by SS (if not NULL). If OSS is not NULL, it is filled in with the old signal stack status. */ int -sigstack (ss, oss) - struct sigstack *ss; - struct sigstack *oss; +sigstack (struct sigstack *ss, struct sigstack *oss) { __set_errno (ENOSYS); return -1; |