summaryrefslogtreecommitdiff
path: root/cmake/TestWindowsFSeek.c
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2013-10-04 15:51:59 +0000
committerJörg Mayer <jmayer@loplof.de>2013-10-04 15:51:59 +0000
commit9c0f23709daece3c4e50216bdcf34a0dac26d090 (patch)
tree3f55a035411df453e818d5dc834b3436bdef0154 /cmake/TestWindowsFSeek.c
parent6c498c7420e2761e3cd2a1ad1667fe8452c6e3cd (diff)
downloadwireshark-9c0f23709daece3c4e50216bdcf34a0dac26d090.tar.gz
Add a missing file on the Windows platform.
Add missing $Id$ tags. svn path=/trunk/; revision=52364
Diffstat (limited to 'cmake/TestWindowsFSeek.c')
-rw-r--r--cmake/TestWindowsFSeek.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/cmake/TestWindowsFSeek.c b/cmake/TestWindowsFSeek.c
new file mode 100644
index 0000000000..aa91f4a602
--- /dev/null
+++ b/cmake/TestWindowsFSeek.c
@@ -0,0 +1,20 @@
+/*
+ * $Id$
+ *
+ * This code was copied from http://www.gromacs.org/
+ * and its toplevel COPYING file starts with:
+ *
+ * GROMACS is free software, distributed under the GNU General Public License
+ * (GPL) Version 2.
+ */
+
+#include <stdio.h>
+
+int main()
+{
+ __int64 off=0;
+
+ _fseeki64(NULL, off, SEEK_SET);
+
+ return 0;
+}