From owner-svn-src-all@FreeBSD.ORG Fri Sep 19 18:13:56 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D997E733; Fri, 19 Sep 2014 18:13:56 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C55E383F; Fri, 19 Sep 2014 18:13:56 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8JIDuIZ060329; Fri, 19 Sep 2014 18:13:56 GMT (envelope-from pfg@FreeBSD.org) Received: (from pfg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8JIDu9R060328; Fri, 19 Sep 2014 18:13:56 GMT (envelope-from pfg@FreeBSD.org) Message-Id: <201409191813.s8JIDu9R060328@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pfg set sender to pfg@FreeBSD.org using -f From: "Pedro F. Giffuni" Date: Fri, 19 Sep 2014 18:13:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r271878 - head/include X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Sep 2014 18:13:57 -0000 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);