aboutsummaryrefslogtreecommitdiff
path: root/lib/fstream/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fstream/internal.h')
-rw-r--r--lib/fstream/internal.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/fstream/internal.h b/lib/fstream/internal.h
new file mode 100644
index 0000000..e8b0c07
--- /dev/null
+++ b/lib/fstream/internal.h
@@ -0,0 +1,25 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+/*
+ * internal.h
+ *
+ * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
+ */
+#ifndef INTERNAL_H
+#define INTERNAL_H
+
+#include "config.h"
+#include "compat.h"
+#include "fstream.h"
+
+#include <string.h>
+#include <stdlib.h>
+#include <stdarg.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <errno.h>
+#include <stdio.h>
+
+#define BUFSZ (262144)
+
+#endif /* INTERNAL_H */