svn commit: r189812 - head/include

David Schultz das at FreeBSD.org
Sat Mar 14 12:05:19 PDT 2009


Author: das
Date: Sat Mar 14 19:05:18 2009
New Revision: 189812
URL: http://svn.freebsd.org/changeset/base/189812

Log:
  Namespace: setgrent() is an XSI extension.

Modified:
  head/include/grp.h

Modified: head/include/grp.h
==============================================================================
--- head/include/grp.h	Sat Mar 14 19:04:24 2009	(r189811)
+++ head/include/grp.h	Sat Mar 14 19:05:18 2009	(r189812)
@@ -74,9 +74,11 @@ struct group	*getgrnam(const char *);
 #if __BSD_VISIBLE
 const char	*group_from_gid(gid_t, int);
 #endif
-#if __BSD_VISIBLE || __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE
+#if __BSD_VISIBLE || __XSI_VISIBLE
 /* XXX IEEE Std 1003.1, 2003 specifies `void setgrent(void)' */
 int		 setgrent(void);
+#endif
+#if __BSD_VISIBLE || __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE
 int		 getgrgid_r(gid_t, struct group *, char *, size_t,
 		    struct group **);
 int		 getgrnam_r(const char *, struct group *, char *, size_t,


More information about the svn-src-all mailing list