aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/LargeFilesWindows.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/LargeFilesWindows.c')
-rw-r--r--cmake/LargeFilesWindows.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/cmake/LargeFilesWindows.c b/cmake/LargeFilesWindows.c
new file mode 100644
index 0000000..85fadd8
--- /dev/null
+++ b/cmake/LargeFilesWindows.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+
+int main()
+{
+ __int64 off = 0;
+ _fseeki64(NULL, off, SEEK_SET);
+ return 0;
+}