style(9): line up function names

This commit is contained in:
Mike Barcroft 2002-09-17 22:39:43 +00:00
parent cdba64071c
commit 7f4e0a8164
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103509

View File

@ -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