Date: Fri, 19 Sep 2014 18:13:56 +0000 (UTC) From: "Pedro F. Giffuni" <pfg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r271878 - head/include Message-ID: <201409191813.s8JIDu9R060328@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pfg Date: Fri Sep 19 18:13:56 2014 New Revision: 271878 URL: http://svnweb.freebsd.org/changeset/base/271878 Log: 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 Modified: head/include/unistd.h Modified: head/include/unistd.h ============================================================================== --- head/include/unistd.h Fri Sep 19 18:12:46 2014 (r271877) +++ head/include/unistd.h Fri Sep 19 18:13:56 2014 (r271878) @@ -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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409191813.s8JIDu9R060328>