diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-03-10 18:03:17 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-03-10 18:19:41 -0500 |
commit | f9c2498fee1c94adf00e788863d2d4544d1d1ec0 (patch) | |
tree | fa2f1f6d595b8729152c41c1c9dc8a698a463017 /include | |
parent | a3f7bcdeaa4cbf8258824b6be4f231ca54a7fdfc (diff) | |
download | musl-f9c2498fee1c94adf00e788863d2d4544d1d1ec0.tar.gz musl-f9c2498fee1c94adf00e788863d2d4544d1d1ec0.tar.bz2 musl-f9c2498fee1c94adf00e788863d2d4544d1d1ec0.tar.xz musl-f9c2498fee1c94adf00e788863d2d4544d1d1ec0.zip |
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 #844 removed it from
the standard.
Diffstat (limited to 'include')
-rw-r--r-- | include/signal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/signal.h b/include/signal.h index 4001ff49..a4f85cca 100644 --- a/include/signal.h +++ b/include/signal.h @@ -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); |