Fix harmless Sphinx warning
[alexxy/gromacs.git] / cmake / TestFileOffsetBits.cpp
1 #include <sys/types.h>
2
3 int main()
4 {
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];
8 }
9