summaryrefslogtreecommitdiff
path: root/include/grp.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2016-10-20 17:04:37 -0400
committerRich Felker <dalias@aerifal.cx>2016-10-20 17:04:37 -0400
commit2ed4e9d9279117ffa50294095e172804cd1b68e5 (patch)
tree15390dcb1833121aadfe8458563135937aaec3a4 /include/grp.h
parent4b8f94c2501e6fea3db631b73b0c91e34e2134cf (diff)
downloadmusl-2ed4e9d9279117ffa50294095e172804cd1b68e5.tar.gz
remove parameter names from public headers
inclusion of these names was unintentional and in most cases is a namespace violation. Daniel Sabogal tracked down and reported these.
Diffstat (limited to 'include/grp.h')
-rw-r--r--include/grp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/grp.h b/include/grp.h
index 358181bf..d8581409 100644
--- a/include/grp.h
+++ b/include/grp.h
@@ -34,7 +34,7 @@ void endgrent(void);
void setgrent(void);
#ifdef _GNU_SOURCE
-struct group *fgetgrent(FILE *stream);
+struct group *fgetgrent(FILE *);
int putgrent(const struct group *, FILE *);
#endif