summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorghelmer <ghelmer@FreeBSD.org>2012-01-26 20:40:22 +0000
committerghelmer <ghelmer@FreeBSD.org>2012-01-26 20:40:22 +0000
commit0c19567ee45eb92c70702ba4f9f1a39f2b0972c2 (patch)
treed0b97806aeb5fbe935fc396d1cd7c0aeea4bb4b9 /lib
parentfd695d2710795eec486f6a4d9accc8598a5fcb5f (diff)
downloadFreeBSD-src-0c19567ee45eb92c70702ba4f9f1a39f2b0972c2.zip
FreeBSD-src-0c19567ee45eb92c70702ba4f9f1a39f2b0972c2.tar.gz
Consensus between bde and pjd seemed to be that if the function names
are lined up, then any * after a long type should appear after the type instead of being in front of the function name on the following line.
Diffstat (limited to 'lib')
-rw-r--r--lib/libutil/libutil.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/libutil/libutil.h b/lib/libutil/libutil.h
index fbf5a89..bf42766 100644
--- a/lib/libutil/libutil.h
+++ b/lib/libutil/libutil.h
@@ -154,26 +154,26 @@ char *pw_make(const struct passwd *_pw);
char *pw_make_v7(const struct passwd *_pw);
int pw_mkdb(const char *_user);
int pw_lock(void);
-struct passwd
- *pw_scan(const char *_line, int _flags);
-const char
- *pw_tempname(void);
+struct passwd *
+ pw_scan(const char *_line, int _flags);
+const char *
+ pw_tempname(void);
int pw_tmp(int _mfd);
#endif
#ifdef _GRP_H_
int gr_copy(int __ffd, int _tfd, const struct group *_gr,
struct group *_old_gr);
-struct group
- *gr_dup(const struct group *_gr);
+struct group *
+ gr_dup(const struct group *_gr);
int gr_equal(const struct group *_gr1, const struct group *_gr2);
void gr_fini(void);
int gr_init(const char *_dir, const char *_master);
int gr_lock(void);
char *gr_make(const struct group *_gr);
int gr_mkdb(void);
-struct group
- *gr_scan(const char *_line);
+struct group *
+ gr_scan(const char *_line);
int gr_tmp(int _mdf);
#endif
OpenPOWER on IntegriCloud