diff options
Diffstat (limited to 'stdlib/swapcontext.c')
-rw-r--r-- | stdlib/swapcontext.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/stdlib/swapcontext.c b/stdlib/swapcontext.c index 988e4aae3f..94dc92cd46 100644 --- a/stdlib/swapcontext.c +++ b/stdlib/swapcontext.c @@ -19,9 +19,7 @@ #include <ucontext.h> int -swapcontext (oucp, ucp) - ucontext_t *oucp; - const ucontext_t *ucp; +swapcontext (ucontext_t *oucp, const ucontext_t *ucp) { __set_errno (ENOSYS); return -1; |