summaryrefslogtreecommitdiff
path: root/cmake/TestWindowsFSeek.c
blob: ad9f0be15482c13a7cf7ef99860e732c40182d00 (plain)
1
2
3
4
5
6
7
8
9
10
11

#include <stdio.h>
    
int main()
{
  __int64 off=0;

  _fseeki64(NULL, off, SEEK_SET);
        
  return 0;
}