X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/4f47fec04d2a98427d9f9783a073a5f1856ef342..eca151d4579f741e96b1977a7ee163f1fb4dc5f4:/mkrounding.c diff --git a/mkrounding.c b/mkrounding.c index 6d889d9d..9ad24f9e 100644 --- a/mkrounding.c +++ b/mkrounding.c @@ -4,8 +4,9 @@ * Copyright (C) 2007 Wayne Davison * * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -13,54 +14,25 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. + * with this program; if not, visit the http://fsf.org website. */ #include "rsync.h" -struct test1 { - union file_extras extras1[1]; - struct { -# include "mkrounding.h" - } file; -}; - -struct test2 { - union file_extras extras2[2]; - struct { -# include "mkrounding.h" - } file; -}; +#define ARRAY_LEN (EXTRA_ROUNDING+1) +#define SIZEOF(x) ((long int)sizeof (x)) -struct test4 { - union file_extras extras4[4]; - struct { -# include "mkrounding.h" - } file; +struct test { + union file_extras extras[ARRAY_LEN]; + struct file_struct file; }; -#define SIZE_TEST(n) (sizeof (struct test ## n) == EXTRA_LEN * n + sizeof (struct file_struct)) +#define ACTUAL_SIZE SIZEOF(struct test) +#define EXPECTED_SIZE (SIZEOF(union file_extras) * ARRAY_LEN + SIZEOF(struct file_struct)) int main(UNUSED(int argc), UNUSED(char *argv[])) { - int cnt; - if (SIZE_TEST(1)) - cnt = 0; - else if (SIZE_TEST(2)) - cnt = 1; - else if (SIZE_TEST(4)) - cnt = 3; - else { - fprintf(stderr, "Unable to determine required file_extras rounding!\n"); - cnt = 3; - } - if (cnt) - fprintf(stderr, "Rounding file_extras in multiples of %d", cnt + 1); - else - fprintf(stderr, "No rounding needed for file_extras"); - fprintf(stderr, " (EXTRA_LEN=%d, FILE_STRUCT_LEN=%d)\n", - (int)EXTRA_LEN, (int)FILE_STRUCT_LEN); - printf("#define EXTRA_ROUNDING %d\n", cnt); + static int test_array[1 - 2 * (ACTUAL_SIZE != EXPECTED_SIZE)]; + test_array[0] = 0; return 0; }