diff options
author | mike <mike@FreeBSD.org> | 2002-09-17 22:39:43 +0000 |
---|---|---|
committer | mike <mike@FreeBSD.org> | 2002-09-17 22:39:43 +0000 |
commit | b5274ecd2695f348218eab56a15c875e597ed989 (patch) | |
tree | 376ed6c1cbef6d39fc5b83fcbb16152b1f09f670 /include | |
parent | 7fd8427cf78ed3d6ed80aafb4dd8b2ae5c85715b (diff) | |
download | FreeBSD-src-b5274ecd2695f348218eab56a15c875e597ed989.zip FreeBSD-src-b5274ecd2695f348218eab56a15c875e597ed989.tar.gz |
style(9): line up function names
Diffstat (limited to 'include')
-rw-r--r-- | include/grp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/grp.h b/include/grp.h index 2f5c543..3ffa658 100644 --- a/include/grp.h +++ b/include/grp.h @@ -62,15 +62,15 @@ struct group { }; __BEGIN_DECLS -struct group *getgrgid(gid_t); -struct group *getgrnam(const char *); +struct group *getgrgid(gid_t); +struct group *getgrnam(const char *); #ifndef _POSIX_SOURCE -struct group *getgrent(void); -int setgrent(void); -void endgrent(void); -void setgrfile(const char *); -int setgroupent(int); -const char *group_from_gid(gid_t, int); +struct group *getgrent(void); +int setgrent(void); +void endgrent(void); +void setgrfile(const char *); +int setgroupent(int); +const char *group_from_gid(gid_t, int); #endif __END_DECLS |