unistd: drop argument names from setpgrp(3) prototype.

They are useless and don't match the style of the header.
While here adjust the comment with tabs.

Suggested by:	kevinlo
This commit is contained in:
Pedro F. Giffuni 2014-09-19 18:13:56 +00:00
parent 83f0a683f4
commit 749cd43178
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=271878

View File

@ -566,7 +566,7 @@ int setkey(const char *);
int setlogin(const char *);
int setloginclass(const char *);
void *setmode(const char *);
int setpgrp(pid_t _pid, pid_t _pgrp); /* obsoleted by setpgid() */
int setpgrp(pid_t, pid_t); /* obsoleted by setpgid() */
void setproctitle(const char *_fmt, ...) __printf0like(1, 2);
int setresgid(gid_t, gid_t, gid_t);
int setresuid(uid_t, uid_t, uid_t);