xref: /netbsd-src/external/bsd/ekermit/dist/platform.h (revision 755f450934b71be60310099f12a64671ac92d28f)
1 /* Unix platform.h for EK */
2 
3 #include <ctype.h>
4 #include <errno.h>
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <unistd.h>
8 #include <sys/stat.h>
9 
10 #undef X_OK	/* namespace collision between kermit.h and unistd.h */
11 
12 #ifndef IBUFLEN
13 #define IBUFLEN  4096			/* File input buffer size */
14 #endif /* IBUFLEN */
15 
16 #ifndef OBUFLEN
17 #define OBUFLEN  8192                   /* File output buffer size */
18 #endif /* OBUFLEN */
19