aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/TestWindowsFSeek.c
blob: 8f448a0c09f18e56ef4eefb0d3b994c961ce559c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * 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;
}