From 749cd43178daf07374238a0ee37ede58341b431c Mon Sep 17 00:00:00 2001 From: "Pedro F. Giffuni" Date: Fri, 19 Sep 2014 18:13:56 +0000 Subject: [PATCH] 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 --- include/unistd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);