include fixes
[unix-history] / usr / src / old / make / defs
index 6ea6db4..64833c1 100644 (file)
@@ -1,6 +1,8 @@
-static char *sccsid = "@(#)defs        4.1 (Berkeley) 81/02/28";
+/* defs 4.6 83/07/01 */
 #include <stdio.h>
 #include <ctype.h>
 #include <stdio.h>
 #include <ctype.h>
+#include <sys/param.h>
+#include <sys/dir.h>
 
 #define SHELLCOM "/bin/sh"
 
 
 #define SHELLCOM "/bin/sh"
 
@@ -25,7 +27,7 @@ typedef long int TIMETYPE;
 #define NLEFTS 512
 #define NCHARS 500
 #define NINTS  250
 #define NLEFTS 512
 #define NCHARS 500
 #define NINTS  250
-#define INMAX 2500
+#define INMAX 3500
 #define OUTMAX 3500
 #define QBUFMAX 2500
 #define MAXDIR 10
 #define OUTMAX 3500
 #define QBUFMAX 2500
 #define MAXDIR 10
@@ -111,13 +113,13 @@ struct pattern
        };
 extern struct pattern *firstpat;
 
        };
 extern struct pattern *firstpat;
 
-struct opendir
+struct dirhdr
        {
        {
-       struct opendir *nxtopendir;
-       FILE * dirfc;
+       struct dirhdr *nxtopendir;
+       DIR *dirfc;
        char *dirn;
        };
        char *dirn;
        };
-extern struct opendir *firstod;
+extern struct dirhdr *firstod;
 
 
 struct chain
 
 
 struct chain