From f1d3699b53f1dc16683d0655e1ab5dac8a4da96e Mon Sep 17 00:00:00 2001 From: cognet Date: Tue, 22 Dec 2009 22:15:52 +0000 Subject: Don't name parameters, for consistency with the rest of the file, and because it breaks third-party apps. Submitted by: gahr --- include/signal.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/signal.h b/include/signal.h index 1af0e36..13742c6 100644 --- a/include/signal.h +++ b/include/signal.h @@ -99,12 +99,12 @@ int sigwaitinfo(const sigset_t * __restrict, siginfo_t * __restrict); #if __XSI_VISIBLE int killpg(__pid_t, int); int sigaltstack(const stack_t * __restrict, stack_t * __restrict); -int sighold(int sig); -int sigignore(int sig); -int sigpause(int sigmask); -int sigrelse(int sig); -void (*sigset(int sig, void (*disp)(int)))(int); -int xsi_sigpause(int sig); +int sighold(int); +int sigignore(int); +int sigpause(int); +int sigrelse(int); +void (*sigset(int, void (*)(int)))(int); +int xsi_sigpause(int); #endif #if __XSI_VISIBLE >= 600 -- cgit v1.1