From 1d943da0cf9154e7ce78ce867cdbb91531c5d78e Mon Sep 17 00:00:00 2001 From: Matthew Sotoudeh Date: Tue, 25 Jul 2023 14:58:33 -0700 Subject: initial dietc commit --- tests/coreutils.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/coreutils.c (limited to 'tests/coreutils.c') diff --git a/tests/coreutils.c b/tests/coreutils.c new file mode 100644 index 0000000..60b9176 --- /dev/null +++ b/tests/coreutils.c @@ -0,0 +1,16 @@ + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31)) + +int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main (void) +{ + + ; + return 0; +} -- cgit v1.2.3