repo.or.cz
/
gromacs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Extend GPU traits class
[gromacs.git]
/
cmake
/
TestFileOffsetBits.cpp
blob
e7efc0e6342a4b3af28a6f821b5309281eb9788b
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