summary refs log tree commit diff
path: root/compat/ftruncate.c
diff options
context:
space:
mode:
Diffstat (limited to 'compat/ftruncate.c')
-rw-r--r--compat/ftruncate.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/compat/ftruncate.c b/compat/ftruncate.c
new file mode 100644
index 0000000..e825e50
--- /dev/null
+++ b/compat/ftruncate.c
@@ -0,0 +1,17 @@
+/*
+ * Public domain
+ *
+ * Kinichiro Inoguchi <inoguchi@openbsd.org>
+ */
+
+#ifdef _WIN32
+
+#include <unistd.h>
+
+int
+ftruncate(int fd, off_t length)
+{
+	return _chsize(fd, length);
+}
+
+#endif