1
0
mirror of https://git.musl-libc.org/git/musl synced 2025-03-21 10:03:25 +03:00

remove spurious const keyword in sigqueue declaration

this must have been taken from POSIX without realizing that it was
meaningless. the resolution to Austin Group issue  removed it from
the standard.
This commit is contained in:
Rich Felker 2018-03-10 18:03:17 -05:00
parent a3f7bcdeaa
commit f9c2498fee

@ -210,7 +210,7 @@ int sigpending(sigset_t *);
int sigwait(const sigset_t *__restrict, int *__restrict);
int sigwaitinfo(const sigset_t *__restrict, siginfo_t *__restrict);
int sigtimedwait(const sigset_t *__restrict, siginfo_t *__restrict, const struct timespec *__restrict);
int sigqueue(pid_t, int, const union sigval);
int sigqueue(pid_t, int, union sigval);
int pthread_sigmask(int, const sigset_t *__restrict, sigset_t *__restrict);
int pthread_kill(pthread_t, int);