blob: 483cca962451474a5a45a6209feebbe7202161cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Unix platform.h for EK */
#include <ctype.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#undef X_OK /* namespace collision between kermit.h and unistd.h */
#ifndef IBUFLEN
#define IBUFLEN 4096 /* File input buffer size */
#endif /* IBUFLEN */
#ifndef OBUFLEN
#define OBUFLEN 8192 /* File output buffer size */
#endif /* OBUFLEN */
|