diff options
Diffstat (limited to 'dirent/dirent.h')
-rw-r--r-- | dirent/dirent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dirent/dirent.h b/dirent/dirent.h index 044fc5a16c..22ddcbbf6d 100644 --- a/dirent/dirent.h +++ b/dirent/dirent.h @@ -157,13 +157,13 @@ extern void seekdir __P ((DIR *__dirp, __off_t __pos)); /* Return the current position of DIRP. */ extern __off_t telldir __P ((DIR *__dirp)); -/* Scan the directory DIR, calling SELECT on each directory entry. +/* Scan the directory DIR, calling SELECTOR on each directory entry. Entries for which SELECT returns nonzero are individually malloc'd, sorted using qsort with CMP, and collected in a malloc'd array in *NAMELIST. Returns the number of entries selected, or -1 on error. */ extern int scandir __P ((__const char *__dir, struct dirent ***__namelist, - int (*__select) __P ((struct dirent *)), + int (*__selector) __P ((struct dirent *)), int (*__cmp) __P ((__const __ptr_t, __const __ptr_t)))); |