Include <dirent.h>, not <sys/dir.h> on Concurrent.

From-SVN: r7530
This commit is contained in:
Richard Kenner 1994-06-22 20:01:40 -04:00
parent 9abdca9c6f
commit 9b3345cc76

View File

@ -64,7 +64,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include <errno.h> #include <errno.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#ifdef POSIX #if defined(POSIX) || defined(CONCURRENT)
#include <dirent.h> #include <dirent.h>
#else #else
#include <sys/dir.h> #include <sys/dir.h>