From f9c2498fee1c94adf00e788863d2d4544d1d1ec0 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 10 Mar 2018 18:03:17 -0500 Subject: 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. --- include/signal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') 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); -- cgit v1.2.1