sec_vt_header: dissect cont_id + opnum
[wireshark-wip.git] / cmake / TestWindowsFSeek.c
blobaa91f4a6022c05e5b89c21b6e88eab6aad75bd48
1 /*
2 * $Id$
4 * This code was copied from http://www.gromacs.org/
5 * and its toplevel COPYING file starts with:
7 * GROMACS is free software, distributed under the GNU General Public License
8 * (GPL) Version 2.
9 */
11 #include <stdio.h>
13 int main()
15 __int64 off=0;
17 _fseeki64(NULL, off, SEEK_SET);
19 return 0;