Author: ghelmer
Date: Thu Jan 26 20:40:22 2012
New Revision: 230601
URL: http://svn.freebsd.org/changeset/base/230601

Log:
  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.

Modified:
  head/lib/libutil/libutil.h

Modified: head/lib/libutil/libutil.h
==============================================================================
--- head/lib/libutil/libutil.h  Thu Jan 26 20:35:01 2012        (r230600)
+++ head/lib/libutil/libutil.h  Thu Jan 26 20:40:22 2012        (r230601)
@@ -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
 
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to