add aarch64/bits/mman.h with PROT_BTI from linux v5.8
[musl] / src / signal / siglongjmp.c
index b644ceb..bc317ac 100644 (file)
@@ -5,6 +5,5 @@
 
 _Noreturn void siglongjmp(sigjmp_buf buf, int ret)
 {
-       if (buf->__fl) __restore_sigs(buf->__ss);
        longjmp(buf, ret);
 }