LibC: Declare pthread_sigmask() in signal.h.

That's where it's supposed to be declared.
This commit is contained in:
Nico Weber 2020-06-15 21:39:09 -04:00 committed by Andreas Kling
parent 0799835e15
commit d81ac80aba

View file

@ -64,6 +64,7 @@ struct sigaction {
int kill(pid_t, int sig);
int killpg(int pgrp, int sig);
sighandler_t signal(int sig, sighandler_t);
int pthread_sigmask(int how, const sigset_t *set, sigset_t *ol_dset);
int sigaction(int sig, const struct sigaction* act, struct sigaction* old_act);
int sigemptyset(sigset_t*);
int sigfillset(sigset_t*);