[BACK]Return to dirent.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/dirent.h between version 1.31 and 1.32

version 1.31, 2013/06/02 16:14:59 version 1.32, 2013/08/16 08:33:20
Line 48 
Line 48 
   
 /*  /*
  * The kernel defines the format of directory entries returned by   * The kernel defines the format of directory entries returned by
  * the getdirentries(2) system call.   * the getdents(2) system call.
  */   */
 #include <sys/dirent.h>  #include <sys/dirent.h>
   
Line 84 
Line 84 
 void rewinddir(DIR *);  void rewinddir(DIR *);
 int closedir(DIR *);  int closedir(DIR *);
 #if __BSD_VISIBLE  #if __BSD_VISIBLE
   int getdents(int, void *, size_t)
                   __attribute__ ((__bounded__(__string__,2,3)));
 int getdirentries(int, char *, int, off_t *)  int getdirentries(int, char *, int, off_t *)
                 __attribute__ ((__bounded__(__string__,2,3)));                  __attribute__ ((__bounded__(__string__,2,3)));
 #endif /* __BSD_VISIBLE */  #endif /* __BSD_VISIBLE */

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.32