diff options
Diffstat (limited to 'libc/signal/sigaction.c')
-rw-r--r-- | libc/signal/sigaction.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/signal/sigaction.c b/libc/signal/sigaction.c index 58cf57b75..849abc745 100644 --- a/libc/signal/sigaction.c +++ b/libc/signal/sigaction.c @@ -160,7 +160,7 @@ int sigaction (int sig, const struct sigaction *act, struct sigaction *oact) k_sigact.sa_restorer = act->sa_restorer; # endif } - result = sigaction(sig, act ? __ptrvalue (&k_sigact) : NULL, + result = __sigaction(sig, act ? __ptrvalue (&k_sigact) : NULL, oact ? __ptrvalue (&k_osigact) : NULL); if (oact && result >= 0) { |