svn commit: r205265 - stable/7/include

Xin LI delphij at FreeBSD.org
Wed Mar 17 21:11:48 UTC 2010


Author: delphij
Date: Wed Mar 17 21:11:48 2010
New Revision: 205265
URL: http://svn.freebsd.org/changeset/base/205265

Log:
  MFC 178256:
  
  Add prototype for fdopendir().
  
  Requested by:	naddy

Modified:
  stable/7/include/dirent.h
Directory Properties:
  stable/7/include/   (props changed)

Modified: stable/7/include/dirent.h
==============================================================================
--- stable/7/include/dirent.h	Wed Mar 17 21:10:09 2010	(r205264)
+++ stable/7/include/dirent.h	Wed Mar 17 21:11:48 2010	(r205265)
@@ -100,6 +100,7 @@ int	 getdents(int, char *, int);
 int	 getdirentries(int, char *, int, long *);
 #endif
 DIR	*opendir(const char *);
+DIR	*fdopendir(int);
 struct dirent *
 	 readdir(DIR *);
 #if __POSIX_VISIBLE >= 199506 || __XSI_VISIBLE >= 500


More information about the svn-src-all mailing list