2 * A pre-compilation helper program to aid in the creation of rounding.h.
4 * Copyright (C) 2007 Wayne Davison
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, visit the http://fsf.org website.
23 union file_extras extras1
[1];
25 # include "mkrounding.h"
30 union file_extras extras2
[2];
32 # include "mkrounding.h"
37 union file_extras extras4
[4];
39 # include "mkrounding.h"
43 #define SIZE_TEST(n) (sizeof (struct test ## n) == EXTRA_LEN * n + sizeof (struct file_struct))
45 int main(UNUSED(int argc
), UNUSED(char *argv
[]))
50 else if (SIZE_TEST(2))
52 else if (SIZE_TEST(4))
55 fprintf(stderr
, "Unable to determine required file_extras rounding!\n");
59 fprintf(stderr
, "Rounding file_extras in multiples of %d", cnt
+ 1);
61 fprintf(stderr
, "No rounding needed for file_extras");
62 fprintf(stderr
, " (EXTRA_LEN=%d, FILE_STRUCT_LEN=%d)\n",
63 (int)EXTRA_LEN
, (int)FILE_STRUCT_LEN
);
64 printf("#define EXTRA_ROUNDING %d\n", cnt
);