aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/LargeFiles.c
blob: d11ea9770fc6c9f3c19185263e1403c88936d1b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>

#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
#define VALID_ARRAY_LENGTH 1
#define INVALID_ARRAY_LENGTH -1

int main(int argc, const char **argv)
{
	int a[(LARGE_OFF_T % 2147483629 == 721 && LARGE_OFF_T % 2147483647 == 1) ? VALID_ARRAY_LENGTH : INVALID_ARRAY_LENGTH];
	off_t offset = ftello(NULL);
	fseeko(NULL, offset, SEEK_SET);
	return 0;
}