summaryrefslogtreecommitdiff
path: root/platform.h
diff options
context:
space:
mode:
authorPaul Selkirk <paul@psgd.org>2016-06-16 15:42:58 -0400
committerPaul Selkirk <paul@psgd.org>2016-06-16 15:42:58 -0400
commit04d48e513f2094345eb697c0a34345daff63a87b (patch)
treef7f26fca6ae7fbacdcf9cd9a1582465f79c94f24 /platform.h
Initial commit of unmodified E-Kermit 1.7
Diffstat (limited to 'platform.h')
-rw-r--r--platform.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/platform.h b/platform.h
new file mode 100644
index 0000000..42259d1
--- /dev/null
+++ b/platform.h
@@ -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 */