aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2014-09-19 18:13:56 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2014-09-19 18:13:56 +0000
commit749cd43178daf07374238a0ee37ede58341b431c (patch)
tree1b62545d9c03237ded28ab19f8b5dece92ae5fc7 /include
parent83f0a683f475546d60d3cad8a991fbd88f4344e7 (diff)
downloadsrc-749cd43178daf07374238a0ee37ede58341b431c.tar.gz
src-749cd43178daf07374238a0ee37ede58341b431c.zip
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
Notes
Notes: svn path=/head/; revision=271878
Diffstat (limited to 'include')
-rw-r--r--include/unistd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unistd.h b/include/unistd.h
index 4ff516c3d7a1..0329122f7e7c 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -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);