formal parameters in prototyps need only 1 underscore

This commit is contained in:
eck
1990-01-29 10:09:00 +00:00
parent 4de10af212
commit 343dbb810f
12 changed files with 154 additions and 154 deletions

View File

@@ -15,7 +15,7 @@ struct group { /* see getgrent(3) */
};
struct group *getgrent(void);
struct group *getgrgid(int __gid);
struct group *getgrnam(const char *__name);
struct group *getgrgid(int _gid);
struct group *getgrnam(const char *_name);
#endif /* _GRP_H */