diff options
author | Paul Selkirk <paul@psgd.org> | 2016-06-16 15:42:58 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2016-06-16 15:42:58 -0400 |
commit | 04d48e513f2094345eb697c0a34345daff63a87b (patch) | |
tree | f7f26fca6ae7fbacdcf9cd9a1582465f79c94f24 /unix.h |
Initial commit of unmodified E-Kermit 1.7
Diffstat (limited to 'unix.h')
-rw-r--r-- | unix.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +/* Unix platform.h for EK */ + +#include <stdio.h> +#include <sys/stat.h> + +#ifndef IBUFLEN +#define IBUFLEN 4096 /* File input buffer size */ +#endif /* IBUFLEN */ + +#ifndef OBUFLEN +#define OBUFLEN 8192 /* File output buffer size */ +#endif /* OBUFLEN */ |