svn commit: r271878 - head/include

Pedro F. Giffuni pfg at FreeBSD.org
Fri Sep 19 18:13:57 UTC 2014


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);


More information about the svn-src-head mailing list