Remove cycle suppression
[gromacs.git] / cmake / TestFileOffsetBits.c
blobe7efc0e6342a4b3af28a6f821b5309281eb9788b
1 #include <sys/types.h>
3 int main()
5 /* Cause a compile-time error if off_t is smaller than 64 bits */
6 int off_t_is_large[sizeof(off_t)-7];
7 return off_t_is_large[0];