Don't name parameters, for consistency with the rest of the file, and because

it breaks third-party apps.

Submitted by:	gahr
This commit is contained in:
Olivier Houchard 2009-12-22 22:15:52 +00:00
parent b748710c34
commit 536fb65904
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=200881

View file

@ -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