diff options
Diffstat (limited to 'signal/sigaltstack.c')
-rw-r--r-- | signal/sigaltstack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/signal/sigaltstack.c b/signal/sigaltstack.c index e4d2319..b70afa7 100644 --- a/signal/sigaltstack.c +++ b/signal/sigaltstack.c @@ -21,7 +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 -sigaltstack (const struct sigaltstack *ss, struct sigaltstack *oss) +sigaltstack (const stack_t *ss, stack_t *oss) { __set_errno (ENOSYS); return -1; |