From 19fa8f60e96f2d63e5d5e8b0cd60c7dd11df5a78 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Thu, 23 Dec 1999 15:52:13 +0000 Subject: [PATCH] Fixed missing declaration of getdents(2). --- include/dirent.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/dirent.h b/include/dirent.h index 7dc16e766f88..653bf390bbe1 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -94,6 +94,7 @@ void seekdir __P((DIR *, long)); int scandir __P((const char *, struct dirent ***, int (*)(struct dirent *), int (*)(const void *, const void *))); int alphasort __P((const void *, const void *)); +int getdents __P((int, char *, int)); int getdirentries __P((int, char *, int, long *)); int readdir_r __P((DIR *, struct dirent *, struct dirent **)); #endif /* not POSIX */