summaryrefslogtreecommitdiff
path: root/LibC/signal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'LibC/signal.cpp')
-rw-r--r--LibC/signal.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/LibC/signal.cpp b/LibC/signal.cpp
index ec2d8c2767..859d0d054b 100644
--- a/LibC/signal.cpp
+++ b/LibC/signal.cpp
@@ -33,7 +33,6 @@ sighandler_t signal(int signum, sighandler_t handler)
new_act.sa_handler = handler;
new_act.sa_flags = 0;
new_act.sa_mask = 0;
- new_act.sa_restorer = nullptr;
int rc = sigaction(signum, &new_act, &old_act);
if (rc < 0)
return SIG_ERR;