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

Diff for /src/include/dirent.h between version 1.25 and 1.26

version 1.25, 2012/03/22 01:13:40 version 1.26, 2012/03/22 01:44:19
Line 112 
Line 112 
 void seekdir(DIR *, long);  void seekdir(DIR *, long);
 #endif  #endif
 #if __POSIX_VISIBLE >= 199506 || __XPG_VISIBLE >= 500  #if __POSIX_VISIBLE >= 199506 || __XPG_VISIBLE >= 500
 int readdir_r(DIR *, struct dirent *, struct dirent **);  int readdir_r(DIR *__restrict, struct dirent *__restrict,
       struct dirent **__restrict);
 #endif  #endif
 #if __BSD_VISIBLE || __POSIX_VISIBLE >= 200809  #if __POSIX_VISIBLE >= 200809
 int scandir(const char *, struct dirent ***,  int scandir(const char *, struct dirent ***, int (*)(struct dirent *),
     int (*)(struct dirent *), int (*)(const void *, const void *));      int (*)(const struct dirent **, const struct dirent **));
 int alphasort(const void *, const void *);  int alphasort(const struct dirent **, const struct dirent **);
 #endif  #endif
 #if __POSIX_VISIBLE >= 200809 || __XPG_VISIBLE > 600  #if __POSIX_VISIBLE >= 200809 || __XPG_VISIBLE > 600
 int (dirfd)(DIR *);  int (dirfd)(DIR *);

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26