summaryrefslogtreecommitdiff
path: root/cmake/CheckFileOffsetBits.c
diff options
context:
space:
mode:
authorJoakim Soderberg <joakim.soderberg@gmail.com>2013-12-09 18:05:32 +0100
committerJoakim Soderberg <joakim.soderberg@gmail.com>2013-12-09 18:05:32 +0100
commite415196a7da61ba32decf508ae4076d7ae5faf20 (patch)
tree1726f0d47eb611e8bba432ecb27bbdb1ec449277 /cmake/CheckFileOffsetBits.c
parent3d10541474ac371b82dc05250735817cef2a8025 (diff)
downloadlibevent-e415196a7da61ba32decf508ae4076d7ae5faf20.tar.gz
Initial CMake commit.
Diffstat (limited to 'cmake/CheckFileOffsetBits.c')
-rw-r--r--cmake/CheckFileOffsetBits.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/cmake/CheckFileOffsetBits.c b/cmake/CheckFileOffsetBits.c
new file mode 100644
index 00000000..d948fecf
--- /dev/null
+++ b/cmake/CheckFileOffsetBits.c
@@ -0,0 +1,14 @@
+#include <sys/types.h>
+
+#define KB ((off_t)1024)
+#define MB ((off_t)1024 * KB)
+#define GB ((off_t)1024 * MB)
+#define TB ((off_t)1024 * GB)
+int t2[(((64 * GB -1) % 671088649) == 268434537)
+ && (((TB - (64 * GB -1) + 255) % 1792151290) == 305159546)? 1: -1];
+
+int main()
+{
+ ;
+ return 0;
+}