Include <dirent.h>, not <sys/dir.h> on Concurrent.
authorRichard Kenner <kenner@gcc.gnu.org>
Thu, 23 Jun 1994 00:01:40 +0000 (20:01 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Thu, 23 Jun 1994 00:01:40 +0000 (20:01 -0400)
From-SVN: r7530

gcc/protoize.c

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